我有一个类实现INotifyDataErrorInfo
我有一些带有错误通知的属性。例如,
public class Request : INotifyPropertyChanged, INotifyDataErrorInfo
{
public string LineOfBusinessIdentifier
{
get { return lineOfBusinessIdentifier; }
set
{
lineOfBusinessIdentifier = value;
ValidateLineOfBusiness();
NotifyPropertyChanged();
}
}
// ValidateLineOfBusiness() Implementation for validation.
}
这个类被许多其他类继承。一切正常。现在我有一个地方我不想在 UI 中显示特定操作的通知,并且在操作后需要通知。无论如何我可以抑制通知。