3

我想使用 WPF 在 WPF 中运行一个基本的数据验证示例ValidatesOnException,但它根本不起作用,一旦我的viewmodelthrows ValidationException,我的程序崩溃说,ValidationException is unhandled by user code

我的视图模型是

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>
4

1 回答 1

6

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

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

如果您想摆脱异常,您可以更改 ViewModel 以实现 IDataErrorInfo 接口而不是抛出异常。

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

于 2012-09-10T15:57:31.613 回答