IDataErrorInfo如何工作?

时间:2010-06-24 10:48:06

标签: wpf idataerrorinfo

我目前正在研究WPF应用的验证,并看到提到IDataErrorInfo。然而,很少有如何使用它的指南,更糟糕的是没有人解释它是如何工作的。

在MSND.com网站上,这是givin' MSDN

public class Person : IDataErrorInfo
{
    private int age;
    public int Age
    {
        get { return age; }
        set { age = value; }
    }

    public string Error
    {
        get
        {
            return null;
        }
    }

    public string this[string name]
    {
        get
        {
            string result = null;
            if (name == "Age")
            {
                if (this.age < 0 || this.age > 150)
                {
                    result = "Age must not be less than 0 or greater than 150.";
                }
            }
            return result;
        }
    }
}

我看到这里发生了什么,但我不知道它对我的数据有什么影响。

这两个属性何时使用?假设有人将Age设置为400:调用属性上的setter。这个错误会阻止它被设置吗?如果没有,它只是警告数字不正确,什么阻止某人保存信息?没有IsValid()方法可以检查,是吗?

很想知道窗帘会发生什么。

2 个答案:

答案 0 :(得分:6)

通常不使用Error属性,但您必须定义它才能实现接口。 正如decyclone所说,验证不会阻止使用错误的值设置属性,但您可以将属性设置为默认值。 让我告诉你我是如何使用它的。我有几个TextBox es,我必须验证他们拥有的值。我不想在调用集合时显示带有错误的MessageBox,而是采用“webly”方法:当设置了无效值和工具提示时,我希望TextBox的边框和背景为红色TextBox显示它得到的错误。

这是我对TextBox的xaml:

<converters:ValidationConverter x:Key="validationConverter"/>
<Style x:Key="TestStepTextBox" TargetType="{x:Type TextBox}">
    <Setter Property="Validation.ErrorTemplate" Value="{x:Null}"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type TextBox}">
                <Border x:Name="Bd" SnapsToDevicePixels="true" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="{TemplateBinding BorderThickness}">
                    <ScrollViewer x:Name="PART_ContentHost" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"/>
                </Border>
                <ControlTemplate.Triggers>
                    <Trigger Property="Validation.HasError" Value="true">
                        <Setter Property="ToolTip"
                                Value="{Binding RelativeSource={RelativeSource Self}, 
                                Converter={StaticResource validationConverter}, Path=(Validation.Errors)}"/>
                        <Setter Property="Background" Value="#33FF342D"/>
                        <Setter Property="BorderBrush" Value="#AAFF342D"/>
                    </Trigger>
                </ControlTemplate.Triggers>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

<TextBox Name="txtRunAfter" Text="{Binding RunAfter, ValidatesOnDataErrors=True, NotifyOnValidationError=True, UpdateSourceTrigger=PropertyChanged}" Style="{DynamicResource TestStepTextBox}"/>
<TextBox Name="txtStopAfter" Text="{Binding StopAfter, ValidatesOnDataErrors=True, NotifyOnValidationError=True, UpdateSourceTrigger=PropertyChanged}" Style="{DynamicResource TestStepTextBox}"/>

关于转换器的非常重要的注意事项。当我输入无效值然后设置了一个好的值时,我得到了一个例外。不知何故,可能与UpdateSourceTrigger=PropertyChanged有关,有一段时间HasError属性为true但没有设置错误(参见link)。所以这是转换器的代码:

public class ValidationConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        ReadOnlyObservableCollection<ValidationError> errors = value as ReadOnlyObservableCollection<ValidationError>;
        if (errors == null) return value;
        if (errors.Count > 0)
        {
            return errors[0].ErrorContent;
        }
        return "";
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotImplementedException("This method should never be called");
    }
}

为了防止将隐藏值保存到我的模型层,我使用相同的方法来检查是否应该将数据提交给模型。如果值无效,我只需设置属性,不要在模型中调用一组属性。检查代码:

private int _runAfter = 0;
public int RunAfter
{
    get
    {
        return _runAfter;
    }

    set
    {
        if (_runAfter != value)
        {
            _runAfter = value;
            OnPropertyChanged("RunAfter");

            if (validateRunAfter() == null)
                setRunAfter(); //sets the property value to the model layer
        }
    }
}

string IDataErrorInfo.this[string columnName]
{
    get
    {
        string message = null;
        if (columnName == "RunAfter")
            message = validateRunAfter();
        //...
        return message;
    }
}

private string validateRunAfter()
{
    if (value >= _order)
        return "Run After value must be less than its Step Order (#) value.";

    return null;
}

答案 1 :(得分:2)

我对IDataErrorInfo的了解仅用于UI目的。它的作用是提供一种将错误消息绑定到WPF UI的简单方法。由于WPF UI“标识”与IDataErrorInfo一样实现INotifyPropertyChanged的对象,因此您无需编写额外的代码来显示UI中的错误消息。

还有一件事,它不会停止设置错误的值。它只会告诉WPF UI(当WPF UI调用提供属性名称的索引器时)特定属性中的值无效。