TSCHMI_Malafeev_Labi_Topchik/lab3/App.xaml

23 lines
1.1 KiB
XML

<Application x:Class="lab3.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:lab3"
StartupUri="MainWindow.xaml">
<Application.Resources>
<!-- Определение стиля для кнопок -->
<SolidColorBrush x:Key="ButtonBackgroundBrush" Color="#FF8DECC3"/>
<Style TargetType="Button" BasedOn="{StaticResource {x:Type Button}}">
<Setter Property="Margin" Value="5"/>
<Setter Property="Foreground" Value="Black"/>
<Setter Property="BorderBrush" Value="Black"/>
<Setter Property="BorderThickness" Value="2"/>
<Setter Property="Background" Value="{StaticResource ButtonBackgroundBrush}"/>
</Style>
<!-- Определение стиля для текста -->
<Style TargetType="TextBlock">
<Setter Property="FontFamily" Value="Bahnschrift"/>
<Setter Property="TextWrapping" Value="Wrap"/>
</Style>
</Application.Resources>
</Application>