Skip to content

Instantly share code, notes, and snippets.

@kaisellgren
Created April 9, 2012 13:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaisellgren/2343435 to your computer and use it in GitHub Desktop.
Save kaisellgren/2343435 to your computer and use it in GitHub Desktop.
WPF Style
<Window.Resources>
...
<!--A Style that affects all TextBlocks-->
<Style TargetType="TextBlock">
<Setter Property="HorizontalAlignment" Value="Center" />
<Setter Property="FontFamily" Value="Comic Sans MS"/>
<Setter Property="FontSize" Value="14"/>
</Style>
...
</Window.Resources>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment