Class ValidationPropertyChanged
- Namespace
- HeBianGu.Service.Validation
- Assembly
- HeBianGu.Service.Validation.dll
带有数据验证功能的MVVM绑定模型基类
public class ValidationPropertyChanged : NotifyPropertyChanged, INotifyPropertyChanged, IDataErrorInfo
- Inheritance
-
ValidationPropertyChanged
- Implements
- Inherited Members
- Extension Methods
Constructors
ValidationPropertyChanged()
public ValidationPropertyChanged()
Properties
Error
Gets an error message indicating what is wrong with this object.
[Browsable(false)]
public string Error { get; }
Property Value
- string
An error message indicating what is wrong with this object. The default is an empty string ("").
this[string]
Gets the error message for the property with the given name.
[Browsable(false)]
public string this[string columnName] { get; }
Parameters
columnName
stringThe name of the property whose error message to get.
Property Value
- string
The error message for the property. The default is an empty string ("").
Methods
GetErrorMessage()
获取所有数据错误信息
public List<string> GetErrorMessage()
Returns
IsValid()
检查数据是否都有效
public bool IsValid()