Tengo una ExceptionValidationRule
en mi cuadro de texto:ExceptionValidationRule no reacciona a las excepciones
<Window.Resources>
<Style x:Key="textStyleTextBox" TargetType="TextBox">
<Style.Triggers>
<Trigger Property="Validation.HasError" Value="true">
<Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors)[0].ErrorContent}" />
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<TextBox x:Name="myTextBox"
{Binding Path=MyProperty, ValidatesOnExceptions=True}"
Style="{StaticResource ResourceKey=textStyleTextBox}" />
y MyProperty
parece que:
private int myProperty;
public int MyProperty
{
get { return myProperty; }
set
{
if(value > 10)
throw new ArgumentException("LOL that's an error");
myProperty = value;
}
}
En DEBUG
modo, la aplicación se bloquea con excepción no controlada "LOL that's an error"
(WPF Binding Engine no detecta esto y creo que debería ...).
En el modo RELEASE
, todo funciona bien.
¿Puede alguien decirme, por qué demonios está sucediendo esto? ¿Y cómo puedo solucionar esto?
¿Tiene asociado un evento UnhandledException? – Krimson