- <Application x:Class="Exam.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:Exam"
- StartupUri="MainWindow.xaml">
- <Application.Resources>
- <Style TargetType="TextBlock">
- <Setter Property="FontFamily" Value="Comic Sans"/>
- <Setter Property="FontSize" Value="14"/>
- </Style>
- <Style TargetType="Button">
- <Setter Property="Background" Value="Gray"/>
- <Setter Property="Foreground" Value="White"/>
- </Style>
- </Application.Resources>
- </Application>
|