1

使用 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...
}
4

1 回答 1

0

我建议您将 TextBox 的值绑定到一个字符串值并在那里进行验证。如果验证成功,则将值传递给具有您实际查找的数据类型(例如 int)的另一个属性。在任何其他情况下,验证失败。只是一种解决方法......但对我有用。

于 2012-07-27T20:47:29.730 回答