WPF使用IDataErrorInfo接口进行数据校验 - 简书

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WPF使用IDataErrorInfo接口进行数据校验 - 简书相关的知识,希望对你有一定的参考价值。

原文:WPF使用IDataErrorInfo接口进行数据校验 - 简书

    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("
",_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接口进行数据校验 - 简书的主要内容,如果未能解决你的问题,请参考以下文章

WPF 列表框 + 绑定 + IDataErrorInfo =?

WPF IDataErrorInfo 问题

WPF 03 - Model Validation with IDataErrorInfo 例子

将 WPF ValidationRule 的状态传递给 MVVM 中的视图模型

WPF中TextBox只能输入正数或者负数和只能输入一个小数点?

2021-09-29 WPF上位机 51-MVVM模式中的数据校验