Guest User

Untitled

a guest
Dec 11th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <ResourceDictionary>
  2. <ControlTemplate x:Key="ErrorTemplate" TargetType="{x:Type Control}">
  3. <Grid>
  4. <Border
  5. Background="#11FF0000"
  6. BorderBrush="#FFFF0000"
  7. BorderThickness="1"
  8. IsHitTestVisible="False"/>
  9. <Polygon
  10. Fill="#FFFF0000"
  11. Points="0,0 10,0 10,10"
  12. HorizontalAlignment="Right"
  13. ToolTip="{Binding ElementName=adorner,
  14. Path=AdornedElement.(Validation.Errors)[0].ErrorContent}"/>
  15. <AdornedElementPlaceholder x:Name="adorner"/>
  16. </Grid>
  17. </ControlTemplate>
  18. <Style TargetType="{x:Type TextBox}">
  19. <Setter Property="Validation.ErrorTemplate" Value="{StaticResource ErrorTemplate}"/>
  20. </Style>
  21. </ResourceDictionary>
Add Comment
Please, Sign In to add comment