Files
WPF_Practice/PacticeSolution/UseStyleOfWPF/App.xaml
2023-07-11 16:54:26 +09:00

25 lines
1.0 KiB
XML

<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>