WPF default style
/
/
May 24, 2018
How to use a WPF Style Every WPF FrameworkElement has a Style property, which you can use to customize your WPF controls. Create a style the control’s Style property, and you can set any DependencyProperties of that control with Setters or Triggers in the Style: <TextBlock Text=”Welcome to my blog!” > <TextBlock.Style> <Style> <Setter Property=”Background” …