我的视图模型类中有两个属性 [Say Size, StrVal]。约束之一是 StrVal 长度应小于或等于 Size;此约束应用于 IDataErrorInfo 索引器。
public string this[string propertyName]
{
get
{
string msg = null; ;
switch (propertyName)
{
....
case "StrVal":
{
if (this.StrVal.Length > this.SizeOfStringVal)
{
msg = "Size of entered value is greater than the size";
}
}
break;
.........
}
return msg;
}
}
现在考虑以下情况
Size = 5;
StrVal = "ABCDEF" ; // length = 6 > Size
"Error message is generated"
Size = 7 // length of StrVal is less than 7
但在我以编程方式为“StrVal”属性触发 propertyChanged 事件之前,视觉上仍然会显示错误情况。出于这个原因,我必须使用以下代码。
public int? Size
{
get
{
return this.size;
}
set
{
if (value == this.Size)
{
return;
}
this.size = value;
this.OnPropertyChanged("StrVal");
}
}
请告知这是否是处理问题的理想方法。问候, 阿尼尔班