3

我有 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. 它看起来像这样:

在此处输入图像描述

我不希望出现红色复选框。为此,我明确设置ValidatesOnNotifyDataErrorsfalse. 这工作正常。

出现错误时我想做的是在 上显示错误TextBlock,例如更改TextBlock. 怎样才能TextBlock知道上面存在的任何错误,CheckBox最好的方法是什么?

我的预期结果是这样的:

在此处输入图像描述

4

2 回答 2

6

首先设置ValidatesOnNotifyDataErrors不是摆脱红色边框的正确方法。这将导致您的数据根本无法验证。你想要的是这样的:

<CheckBox Content="Blue" IsChecked="{Binding Model.Blue, ValidatesOnNotifyDataErrors=True}" Validation.ErrorTemplate="{x:Null}"/>

其次,为了获得理想的结果,我会使用这种方法。您可以使用触发器来了解 CheckBox 中是否存在错误(ErrorsChanged事件和HasError属性在这里应该很有用)并设置 TextControl 的文本颜色。

这是完成此操作的代码:

<TextBlock Text="Color">
    <TextBlock.Style>
        <Style TargetType="TextBlock">
            <Style.Triggers>
                <DataTrigger Binding="{Binding ElementName=checkBox, Path=(Validation.HasError)}" Value="True">
                    <Setter Property="Foreground" Value="Red" />
                    <Setter Property="ToolTip" Value="{Binding ElementName=checkBox, Path=(Validation.Errors).CurrentItem.ErrorContent}" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </TextBlock.Style>
</TextBlock>
<CheckBox x:Name="checkBox"
          Margin="4,0"
          Content="Blue"
          IsChecked="{Binding Model.Blue}"
          Validation.ErrorTemplate="{x:Null}" />
于 2016-07-29T06:53:16.187 回答
1

凭借 Karina K 的洞察力,我使用以下代码来实现所需的结果:

<TextBlock Text="Color">
    <TextBlock.Style>
        <Style TargetType="TextBlock">
            <Style.Triggers>
                <DataTrigger Binding="{Binding ElementName=checkBox, Path=(Validation.HasError)}" Value="True">
                    <Setter Property="Foreground" Value="Red" />
                    <Setter Property="ToolTip" Value="{Binding ElementName=checkBox, Path=(Validation.Errors).CurrentItem.ErrorContent}" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </TextBlock.Style>
</TextBlock>
<CheckBox x:Name="checkBox"
          Margin="4,0"
          Content="Blue"
          IsChecked="{Binding Model.Blue}"
          Validation.ErrorTemplate="{x:Null}" />
于 2016-08-01T19:55:36.643 回答