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 Dictionary<string, string> _errorMap = new Dictionary<string, string>();
protected override bool SetProperty<T>(ref T storage, T value, [CallerMemberName]string propertyName = null)
{
var result = base.SetProperty(ref storage, value, propertyName);
var type = this.GetType();
foreach (var methodInfo in type.GetMethods())
{
if (methodInfo.Name == propertyName + "Validation"&& methodInfo.ReturnType == typeof(string) && methodInfo.GetParameters().Length == 0)
{
_errorMap.Add(propertyName,(string)methodInfo.Invoke(this, null));
}
}
return result;
}
}
WPF使用IDataErrorInfo接口进行数据校验
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 本文部分内容来自互联网。 在进行REST接口开发的时候,需要对POST/PUT等接口传入的参数进行一些校验的时候,...
- 三、使用zlib库对收到数据进行解压 使用zlib库:http://www.zlib.net/此软件编译使用的是z...