gpt4 book ai didi

wpf - IDataErrorInfo - 最初忽略首次加载 View 时的错误

转载 作者:行者123 更新时间:2023-12-02 04:36:05 25 4
gpt4 key购买 nike

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

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

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

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

问候,涅槃。

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

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

最佳答案

我采取了以下方法并且有效。基本上,模型应该正确记录错误并将它们列在字典中,即使对象刚刚实例化并且用户尚未输入任何文本。所以我没有更改我的模型代码或 IDataErrorInfo 验证代码。相反,我最初只是将 Validation.Error Template 属性设置为 {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>

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

问候,涅槃。

关于wpf - IDataErrorInfo - 最初忽略首次加载 View 时的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10190164/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com