0

我使用 UpdateSourceTrigger.PropertyChanged 将 TextBox 绑定到整数。

这似乎工作得很好,除非我想将 1000 更改为 2000。删除 1 后,绑定有点太聪明了,将文本截断为一个 0。

我现在的解决方法是在经过一些过滤后显式调用 UpdateSource(),但感觉不对。

有没有解决问题的正确方法?

    private void OnTextChanged(object sender, TextChangedEventArgs e)
    {
        if (IsLoaded)
        {
            string text = ((TextBox)sender).Text;
            if (text.Length <= 1 || !text.StartsWith("0"))
            {
                ((TextBox)sender).GetBindingExpression(TextBox.TextProperty).UpdateSource();
            }
        }
    }

    private void OnTestLostFocus(object sender, RoutedEventArgs e)
    {
        ((TextBox)sender).GetBindingExpression(TextBox.TextProperty).UpdateSource();                    
    }
4

1 回答 1

2

绑定到 int 属性有它的缺点。如果您在文本框中设置了无法转换为 int 的值,则您的绑定将不起作用 - 您的 setter 不会被调用,即使是转换器也不会被调用。

最简单的方法是在视图模型中使用字符串属性并将值转换为模型中的 int 属性。对于验证,您可以使用 IDataErrorInfo。

像 Dan 建议您可以将 UpdateSourceTrigger 设置为 LostFocus。但这在您清除文本框时无济于事;)

于 2013-06-19T13:24:15.443 回答