gpt4 book ai didi

c# - 是否值得实现 IDataErrorInfo?

转载 作者:太空宇宙 更新时间:2023-11-03 13:12:12 24 4
gpt4 key购买 nike

好吧,现在我正在验证数据。我有这段代码:

在我看来:

<TextBox Height="23" Text="{Binding Age, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" Margin="257,150,0,0" Name="txtAge" VerticalAlignment="Top" Width="54"
Visibility="{Binding AgeVisibility}"
IsEnabled="{Binding AgeIsEnabled}"
ToolTip="{Binding AgeToolTip}"
ToolTipService.ShowOnDisabled="true">
<TextBox.Style>
<Style TargetType="TextBox">
<Style.Triggers>
<DataTrigger Binding="{Binding ElementName=ucPrincipal, Path=DataContext.AgeCorrect}" Value="false">
<Setter Property="Background" Value="{StaticResource ResourceKey=TextBoxIncorrectValue}"/>
</DataTrigger>
</Style.Triggers>
</Style>
</TextBox.Style>
</TextBox>

在我的 View 模型中:

private bool _ageCorrect = true;
public bool AgeCorrect
{
get { return _ageCorrect; }
set
{
_ageCorrect = value;
base.RaisePropertyChangedEvent("AgeCorrect");
}
}


private string _ageToolTip = "";
public string AgeToolTip
{
get { return _ageToolTip; }
set
{
_ageToolTip = value;
base.RaisePropertyChangedEvent("AgeToolTip");
}
}


private void validateAge()
{
decimal decParsedAge;
if(decimal.TryParse(Age, out decParsedAge) == true)
{
if (decParsedAge <= 0)
{
AgeToolTip = "Age must be greater than 0";
AgeCorrect = false;
}
else
{
AgeCorrect = true;
}
}
else
{
AgeToolTip = "Age must be a decimal number.";
AgeCorrect = false;
}
}

这很好用。然而,我看到了一些关于 IDataErrorInfo 的例子,但实际上如果我想要有点复杂的数据验证,从我的角度来看,代码并没有太大的不同。所以我想知道是否值得更改我的代码以实现 IDataErrorInfo 接口(interface)。

非常感谢。

最佳答案

如果您需要显示更详细的验证(除了从 View 模型抛出的异常),那么在我的 View 中实现 IDataErrorInfo 是一个很好的起点,并且很容易扩展您的 View 模型;只需要两个成员:一个名为 Error 的字符串属性和一个字符串索引器。

Error 属性提供了一个描述整个对象的整体错误字符串(可能像“无效数据”一样简单)。字符串索引器接受一个属性名并返回相应的详细错误信息。例如,如果将“Age”属性传递给字符串索引器,则可能会收到诸如“年龄不能为负数”之类的响应。

引用 Matthew MacDonald ,“这里的关键思想是属性设置正常,没有任何大惊小怪,索引器允许用户界面检查无效数据。

关于c# - 是否值得实现 IDataErrorInfo?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28043949/

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