WPF使用IDataErrorInfo接口进行数据校验 - 简书
2021-06-08 23:03
标签:aaa only val 使用 shu override protect reac ali WPF使用IDataErrorInfo接口进行数据校验 - 简书 标签:aaa only val 使用 shu override protect reac ali 原文地址:https://www.cnblogs.com/lonelyxmas/p/10682644.html
, string> _errorMap = new Dictionarystring, string>();
protected override bool SetProperty class ValidationBindableBase : BindableBase, IDataErrorInfo
{
public string this[string columnName]
{
get
{
if (_errorMap.ContainsKey(columnName))
{
var error = _errorMap[columnName];
_errorMap.Remove(columnName);
return error;
}
return null;
}
}
public string Error => string.Join("\n",_errorMap.Values);
private readonly Dictionarystring
上一篇:js题集23
文章标题:WPF使用IDataErrorInfo接口进行数据校验 - 简书
文章链接:http://soscw.com/index.php/essay/92408.html