使用ValidatesOnExceptions在WPF中进行数据验证

时间:2012-09-10 09:42:05

标签: wpf exception data-binding exception-handling validation

我想使用ValidatesOnException在WPF中运行基本数据验证示例,但它根本无法正常工作,只要我的viewmodel抛出ValidationException,我的程序就崩溃了,< strong> ValidationException未被用户代码处理。

我的视图模型是

public class MainViewModel : INotifyPropertyChanged
{
    //INotifyPropertyChaned implementation
    //////////////////////////////////////
    private string stringValue;

    public string StringValue
    {
        get { return stringValue; }
        set
        {
            if (value.Length > 6)
            {
                //The below line throws unhandled exception error??
                throw new ValidationException(String.Format("Value's length is greater than {0}.", value.Length));
            }
            stringValue = value;
            this.OnPropertyChanged("StringValue");
        }
    }
}

我的XAML

<StackPanel x:Name="LayoutRoot" Background="White">
<TextBox x:Name="radMaskedTextInput1" 
                                Width="200"
                                Margin="10"
                                Text="{Binding Path=StringValue, Mode=TwoWay, NotifyOnValidationError=True, ValidatesOnExceptions=True, UpdateSourceTrigger=PropertyChanged}" />
</StackPanel>

1 个答案:

答案 0 :(得分:6)

我运行了你的代码,当在调试器下执行时,是的,VS调试器在抛出时停止,因为没有处理该异常的catch语句。

但是在没有调试的情况下启动时,应用程序不会崩溃 - 编辑框边框变为红色。

如果要删除异常,可以更改ViewModel以实现IDataErrorInfo接口,而不是抛出异常。

如果异常干扰了您的调试,例如,您可以开始抛出从ArgumentException或ValidationException派生的自定义异常,并且在抛出此自定义异常且用户未处理时,配置VS不会中断