I need to validate on exceptions when doing binding. Is this possible using Caliburn.Micro?
Right now I have code that looks like
<TextBox x:Name="FirstName" />
But I get no validation on exceptions. If I change it to
<TextBox Text="{Binding FirstName, Mode=TwoWay, ValidatesOnExceptions=True}" />
Then I get proper validation, but lose the nice convention-based binding. Any ideas?