I want to be able to override the default textbox validation for convertion and handle it myself. I've looked at validation rules but I can't get it to disable the original validation. Xaml so far:
<Grid>
<TextBox Text="{Binding Path=Option.Value, NotifyOnSourceUpdated=True}" >
<i:Interaction.Triggers>
<i:EventTrigger EventName="SourceUpdated">
<i:InvokeCommandAction Command="{Binding OptionValueChanged}"></i:InvokeCommandAction>
</i:EventTrigger>
</i:Interaction.Triggers>
</TextBox>
</Grid>
Atm, when a string is entered it displays 'Value {val} cannot be converted' as the field is an integer. How can this be disabled to handle the value myself?