Created
April 9, 2012 13:33
-
-
Save kaisellgren/2343435 to your computer and use it in GitHub Desktop.
WPF Style
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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