0

我有一个类实现INotifyDataErrorInfo我有一些带有错误通知的属性。例如,

public class Request : INotifyPropertyChanged, INotifyDataErrorInfo
{
    public string LineOfBusinessIdentifier
    {
        get { return  lineOfBusinessIdentifier; }
        set 
        { 
            lineOfBusinessIdentifier = value;
            ValidateLineOfBusiness();
            NotifyPropertyChanged();
        }
    }
      // ValidateLineOfBusiness() Implementation for validation.
}

这个类被许多其他类继承。一切正常。现在我有一个地方我不想在 UI 中显示特定操作的通知,并且在操作后需要通知。无论如何我可以抑制通知。

4

1 回答 1

1

如果ValidatesOnNotifyDataErrors (自 .Net 4.5 开始引入)设置为 false,则绑定不会检查并报告错误。默认值为真

"{Binding Path=LineOfBusinessIdentifier, ValidatesOnNotifyDataErrors=False}"

也可以擦除 Validation.ErrorTemplate (在视图中隐藏错误通知)并在触发器设置器中重置它

<Setter Property="Validation.ErrorTemplate" Value="{x:Null}"/>

<!--need custom error template-->
<Setter Property="Validation.ErrorTemplate" Value="{StaticResource ErrorTemplate}""/>

这不会禁用验证,只会隐藏错误的视觉指示


从 Request 派生的 viewModel 可以覆盖 GetErrors 方法(如果它是虚拟的)并在某些情况下禁用 LineOfBusinessIdentifier 属性通知:

伪代码:

override GetErrors(string propertyName) 
{
    if (someCondition)
       return base.GetErrors().Where(prop != LineOfBusinessIdentifier)
    else
       return base.GetErrors()
}
于 2016-04-11T20:34:31.763 回答