The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
69 views

Is there any way to set a tooltip inside an ErrorTemplate?

In our WPF application we have a common control template which we use to display errors in a consistent way <ResourceDictionary> <ControlTemplate x:Key="ErrorTemplate"> ...
0
votes
1answer
204 views

WPF error template border dont show all text

I have some error checkings in my WPF application. Error message is shown next to the textbox but when is the textbox at the right side of application, it doesnt show all error text. The result: ...
0
votes
1answer
167 views

Error template not working when a ControlTemplate is applied to the window

I have a simple application with App.xaml, MainWindow.xaml and a Person class. When I don't specify the template, my ValidateOnDataErrors works perfectly, putting a red border around my textbox when ...
2
votes
2answers
147 views

WPF ControlTemplate Height

I have the following style for validating input in my controls: <Style x:Key="MyErrorTemplate" TargetType="Control"> <Style.Setters> <Setter ...
0
votes
1answer
523 views

TextBox with validation loses ErrorTemplate on tab change

I have a TextBox with a validation rule that is on a tab of a TabControl. The default ErrorTemplate correctly shows (red border around TextBox) when the validation rule fails. However if there is a ...
1
vote
0answers
503 views

Show validation error on multiple rows in DataGrid

In my WPF application I have an ObservableCollection of items. Each of item must have a unique name and the name of the item must starts with a letter. I check data validation errors in base class ...
0
votes
2answers
397 views

Binding FontSize of TextBlock in Validation.ErrorTemplate

I declared a simple Validation.ErrorTemplate for TextBox as the following. <Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource {x:Type TextBox}}"> <Setter ...
25
votes
2answers
6k views

Validation Error Style in WPF, similar to Silverlight

By default, the Validation.ErrorTemplate in WPF is just a small red border without any ToolTip. In Silverlight 4, the validation error is nicely styled out-of-the-box. Here is a comparison of a ...