使用 INotifyDataErrorInfo 的 Silverlight 验证在我开始尝试在绑定到非字符串数据类型属性的 TextBox 上使用它之前,它的错误显示效果很好。我的计划是使用属性的设置器来执行验证逻辑,并根据需要从那里添加和删除错误。它适用于作为字符串的文本框,但是如果您有一个绑定到 Int 的文本框并且您输入了一个字符串,则设置器甚至不会被调用(我可以在其中添加一个明显非数字值的错误无效的)。从这里建议的行动方案是什么?我研究了 ValueConverters,但它们与我正在验证的类中的 INotifyDataErrorInfo 逻辑相距甚远。
假设示例:
public class MyClass
{
private string _prod;
public string Prod
{
get { return _prod; }
set //This works great
{
if (value.Length > 15)
{
AddError("Prod", "Cannot exceed 15 characters", false);
}
else if (value != _prod)
{
RemoveError("Prod", "Cannot exceed 15 characters");
_prod= value;
}
}
}
private int _quantity;
public int Quantity
{
get { return _quantity; }
set //if a string was entered into the textbox, this setter is not called.
{
int test;
if (!int.TryParse(value, test))
{
AddError("Quantity", "Must be numeric", false);
}
else if (test != _quantity)
{
RemoveError("Quantity", "Must be numeric");
_quantity= test;
}
}
}
protected Dictionary<String, List<String>> errors =
new Dictionary<string, List<string>>();
public void AddError(string propertyName, string error, bool isWarning)
{
//adds error to errors
}
public void RemoveError(string propertyName, string error)
{
//removes error from errors
}
//INotifyDataErrorInfo members...
}