13

我正在尝试使用 IDataErrorInfo 验证我的模型类,如下所示。

//Validators
public string this[string propertyName] {
    get {
        string error = null;

        if (propertyName == "Name") {
            error = ValidateName(); 
        }
        return error;
    }
}

这工作正常,除了当视图第一次加载它已经包含验证错误。首次加载视图时是否可以忽略/抑制验证错误。此外,在视图加载时以及在用户开始模型属性的数据输入之前显示错误是否是一种常见的做法。

问候,尼尔文。

编辑: 这就是我设置 IDataErrorInfo 的方式。

<TextBox Text="{Binding Name, ValidatesOnDataErrors=True}" Grid.Row="1" Grid.Column="1" />
4

4 回答 4

3

我采用了以下方法并且它有效。基本上,模型应该正确地记录错误并将它们列在字典中,即使对象刚刚被实例化并且用户还没有输入任何文本。所以我没有更改我的模型代码或 IDataErrorInfo 验证代码。相反,我最初只是将 Validation.Error 模板属性设置为 {x:Null}。然后有代码连接 TextBox 的 LostFocus 事件,将 Validation.Error 模板更改回我正在使用的模板。为了实现模板的交换并将 LostFocus 事件处理程序附加到我的应用程序中的所有 TextBox,我使用了几个依赖属性。这是我使用的代码。

依赖属性和 LostFocus 代码:

    public static DependencyProperty IsDirtyEnabledProperty = DependencyProperty.RegisterAttached("IsDirtyEnabled",
             typeof(bool), typeof(TextBoxExtensions), new PropertyMetadata(false, OnIsDirtyEnabledChanged));
    public static bool GetIsDirtyEnabled(TextBox target) {return (bool)target.GetValue(IsDirtyEnabledProperty);}
    public static void SetIsDirtyEnabled(TextBox target, bool value) {target.SetValue(IsDirtyEnabledProperty, value);}

    public static DependencyProperty ShowErrorTemplateProperty = DependencyProperty.RegisterAttached("ShowErrorTemplate",
             typeof(bool), typeof(TextBoxExtensions), new PropertyMetadata(false));
    public static bool GetShowErrorTemplate(TextBox target) { return (bool)target.GetValue(ShowErrorTemplateProperty); }
    public static void SetShowErrorTemplate(TextBox target, bool value) { target.SetValue(ShowErrorTemplateProperty, value); }

    private static void OnIsDirtyEnabledChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs args) {
        TextBox textBox = (TextBox)dependencyObject;
        if (textBox != null) {
            textBox.LostFocus += (s, e) => {
                if ((bool) textBox.GetValue(ShowErrorTemplateProperty) == false) {
                    textBox.SetValue(ShowErrorTemplateProperty, true);
                }
            };
        }
    }

如果 IsDirtyEnabled 依赖属性设置为 true,它使用回调将 TextBox 的 LostFocus 事件附加到处理程序。处理程序只是将 ShowErrorTemplate 附加属性更改为 true,当 TextBox 失去焦点时,这反过来会在文本框的样式触发器中触发以显示 Validation.Error 模板。

文本框样式:

<Style TargetType="{x:Type TextBox}">
    <Setter Property="Validation.ErrorTemplate" Value="{StaticResource ValidationErrorTemplate}"/>
    <Setter Property="gs:TextBoxExtensions.IsDirtyEnabled" Value="True" />
    <Style.Triggers>
        <Trigger Property="gs:TextBoxExtensions.ShowErrorTemplate" Value="false">
            <Setter Property="Validation.ErrorTemplate" Value="{x:Null}"/>
        </Trigger>
    </Style.Triggers>
</Style>

对于一件简单的事情来说,这似乎代码太多了,但是对于我正在使用的所有文本框,我只需执行一次。

问候,尼尔文。

于 2012-04-19T12:57:47.553 回答
2

尝试在视图显示后设置数据上下文。

就我而言,这有帮助。

于 2012-08-06T07:30:01.163 回答
1

您在 ValidateName() 方法中设置规则。您的视图只显示错误:) 我建议 name 是必填字段,应由用户填写,但您不喜欢第一次加载视图时的红色边框?

我使用两种不同的控制模板进行验证。错误模板正常的一个和一个用于必填字段(红色 *)

这就是我上次做的方式。

于 2012-04-17T13:18:47.247 回答
1

你在get中抛出异常吗?

public string Name
{
    get { return _name; }
    set
    {
        _name = value;
        if (String.IsNullOrEmpty(value))
        {
            throw new ApplicationException("Customer name is mandatory.");
        }
    }
}
于 2012-04-17T12:19:01.800 回答