我有 aTextBlock
和 a CheckBox
,因此:
<StackPanel >
<TextBlock Text="Colors"/>
<CheckBox Content="Blue" IsChecked="{Binding Model.Blue, ValidatesOnNotifyDataErrors=False}"/>
</StackPanel>
在我的模型中,我正在实现INotifyDataErrorInfo
并验证复选框是否被选中。如果未选中,我将其视为错误:
public class MyModel : INotifyPropertyChanged, INotifyDataErrorInfo
{
[CustomValidation(typeof(MyModel), "CheckBoxRequired")]
public bool Blue
{
get { return _blue; }
set { _blue = value; RaisePropertyChanged(nameof(Blue)); }
}
public static ValidationResult CheckBoxRequired(object obj, ValidationContext context)
{
var model = (MyModel)context.ObjectInstance;
if (model.Blue == false)
return new ValidationResult("Blue required", new string[] { "Blue" });
else
return ValidationResult.Success;
}
//...
//INotifyPropertyChanged & INotifyDataErrorInfo implementations omitted
}
当我ValidatesOnNotifyDataErrors
设置为 时true
,它会正确地在CheckBox
. 它看起来像这样:
我不希望出现红色复选框。为此,我明确设置ValidatesOnNotifyDataErrors
为false
. 这工作正常。
出现错误时我想做的是在 上显示错误TextBlock
,例如更改TextBlock
. 怎样才能TextBlock
知道上面存在的任何错误,CheckBox
最好的方法是什么?
我的预期结果是这样的: