You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.0 KiB

2 years ago
<Application x:Class="UseStyleOfWPF.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:UseStyleOfWPF"
StartupUri="MainWindow.xaml">
<Application.Resources>
<Style x:Key="styTextBlock" TargetType="TextBlock">
<Setter Property="FontSize" Value="25"/>
<Setter Property="Foreground" Value="LawnGreen"/>
</Style>
<Style x:Key="styOkButton" TargetType="Button">
<Setter Property="FontSize" Value="30"/>
<Setter Property="Foreground" Value="BlueViolet"/>
<Setter Property="FontWeight" Value="Bold"/>
</Style>
<Style x:Key="styCancelButton" TargetType="Button">
<Setter Property="FontSize" Value="35"/>
<Setter Property="Foreground" Value="Tomato"/>
<Setter Property="FontStyle" Value="Oblique"/>
</Style>
</Application.Resources>
</Application>