Hi
When I add value constraint to a field and the input value is not valid a message box gets prompted to the user. Is there a way to suppress that message box? The asterisk indicating the error is already sufficient.
Hi Mheusser,
You could set the InvalidBehaviourPropety to RetainValue.
Here is a style:
<Style TargetType="{x:Type igEditors:XamNumericEditor}">
<Setter Property="InvalidValueBehavior" Value="RetainValue"/>
<Setter Property="ValueConstraint">
<Setter.Value>
<igEditors:ValueConstraint MinExclusive="17"/>
</Setter.Value>
</Setter>
</Style>
Sincerely, MattDeveloper Support Engineer