This question is locked. New answers and comments are not allowed.
Hello,
I'd like to customize HeaderTemplate of ValidationSummary control and display localized Header. But I cant figure out how to display error counter right to header's text ... Can anybody help me with this?
My current XAML code ...
Thanks in advance!
I'd like to customize HeaderTemplate of ValidationSummary control and display localized Header. But I cant figure out how to display error counter right to header's text ... Can anybody help me with this?
My current XAML code ...
<sdk:ValidationSummary Grid.Row="3"> <sdk:ValidationSummary.HeaderTemplate> <DataTemplate> <Grid Background="Red"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <TextBlock UseLayoutRounding="False" Foreground="White" Text="Editing Errors:" /> <TextBlock UseLayoutRounding="True" Foreground="White" FontWeight="Bold" Text="{Binding DisplayedErrors.Count}" Grid.Column="1" /> </Grid> </DataTemplate> </sdk:ValidationSummary.HeaderTemplate></sdk:ValidationSummary>Thanks in advance!