123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <Application x:Class="PDK_Concert.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:PDK_Concert"
- StartupUri="MainWindow.xaml">
- <Application.Resources>
- <Style x:Key="Title" TargetType="TextBlock">
- <Setter Property="FontSize" Value="32"/>
- <Setter Property="Foreground" Value="White"/>
- </Style>
-
- <Style x:Key="List" TargetType="TextBlock">
- <Setter Property="FontSize" Value="20"/>
- <Setter Property="Foreground" Value="Black"/>
- </Style>
- <Style TargetType="GroupBox">
- <Setter Property="Margin" Value="20"/>
- <Setter Property="Padding" Value="3"/>
- <Setter Property="FontSize" Value="20"/>
- <Setter Property="Foreground" Value="White"/>
- <Setter Property="Width" Value="500"/>
- </Style>
- <Style TargetType="TextBox">
- <Setter Property="FontSize" Value="20"/>
- <Setter Property="Foreground" Value="Black"/>
- </Style>
- <Style TargetType="Button">
- <Setter Property="Width" Value="300"/>
- <Setter Property="FontWeight" Value="Bold"/>
- <Setter Property="Height" Value="40"/>
- <Setter Property="FontSize" Value="20"/>
- <Setter Property="BorderThickness" Value="0"/>
-
- <Setter Property="Background" Value="#FAECD8"/>
- <Setter Property="Margin" Value="25"/>
- </Style>
- <Style x:Key="Menu" TargetType="TextBlock">
- <Setter Property="FontSize" Value="25"/>
- <Setter Property="Foreground" Value="White"/>
- <Setter Property="FontWeight" Value="Bold"/>
- </Style>
- <Style x:Key="o" TargetType="Border">
- <Setter Property="BorderThickness" Value="2"/>
- <Setter Property="BorderBrush" Value="#383229"/>
- <Setter Property="CornerRadius" Value="10"/>
- <Setter Property="Padding" Value="7"/>
- </Style>
- </Application.Resources>
- </Application>
|