Guest User

Untitled

a guest
May 22nd, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <Style x:key="NormalStyle" TargetType="{x:Type TextBox}">
  2. <Setter Property="BorderBrush" Value="Gray" />
  3. <Setter Property="BorderThickness" Value="2" />
  4. </Style>
  5.  
  6. <Style x:key="ActiveStyle" TargetType="{x:Type TextBox}" BasedOn="{StaticResource NormalStyle}">
  7. <Setter Property="BorderBrush" Value="Green" />
  8. <Setter Property="BorderThickness" Value="4" />
  9. </Style>
Add Comment
Please, Sign In to add comment