1234567891011121314151617 |
- <Application x:Class="DemoPractick.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:DemoPractick"
- StartupUri="Main.xaml">
- <Application.Resources>
- <Style TargetType="TextBlock">
- <Setter Property="FontFamily" Value="Tw Cen MT"/>
- </Style>
- <Style TargetType="Label">
- <Setter Property="FontFamily" Value="Tw Cen MT"/>
- </Style>
- <Style TargetType="Button">
- <Setter Property="FontSize" Value="18"/>
- </Style>
- </Application.Resources>
- </Application>
|