This question is locked. New answers and comments are not allowed.
I have a TextBox that I validate on the ViewModel side. The validation works and it shows a red border around the TextBox when the validation fails, the tool tip shows up when I hover over the top right corner of the TextBox. How could I make the tool tip to automatically show up along with the red border instead of having to hover on the corner?
I have a similar validation on a combobox and it seems to behave as I wanted it to, am I missing something here?
This is how my TextBox looks like
Any help will be greatly appreciated
Thanks
K
I have a similar validation on a combobox and it seems to behave as I wanted it to, am I missing something here?
This is how my TextBox looks like
<TextBox x:Name="TextBoxWindow" Margin="0" TextWrapping="Wrap" Text="{Binding TBProperty, Mode=TwoWay, ValidatesOnExceptions=True, NotifyOnValidationError=True}"/>Any help will be greatly appreciated
Thanks
K
