123456789101112131415161718192021 |
- <Application x:Class="Golyshev43p180322.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:Golyshev43p180322"
- StartupUri="MainWindow.xaml">
- <Application.Resources>
- <Style TargetType="TextBlock">
- <Setter Property="FontFamily" Value=" Monotype Corsiva"></Setter>
- <Setter Property="FontSize" Value="18"></Setter>
- </Style>
- <Style TargetType="Button">
- <Setter Property="FontFamily" Value=" Monotype Corsiva"></Setter>
- <Setter Property="FontSize" Value="18"></Setter>
- <Setter Property="Background" Value="turquoise"></Setter>
- </Style>
- <Style TargetType="ComboBox">
- <Setter Property="FontFamily" Value=" Monotype Corsiva"></Setter>
- <Setter Property="FontSize" Value="18"></Setter>
- </Style>
- </Application.Resources>
- </Application>
|