App.xaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <Application x:Class="PDK_Concert.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:PDK_Concert"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style x:Key="Title" TargetType="TextBlock">
  8. <Setter Property="FontSize" Value="32"/>
  9. <Setter Property="Foreground" Value="White"/>
  10. </Style>
  11. <Style x:Key="List" TargetType="TextBlock">
  12. <Setter Property="FontSize" Value="20"/>
  13. <Setter Property="Foreground" Value="Black"/>
  14. </Style>
  15. <Style TargetType="GroupBox">
  16. <Setter Property="Margin" Value="20"/>
  17. <Setter Property="Padding" Value="3"/>
  18. <Setter Property="FontSize" Value="20"/>
  19. <Setter Property="Foreground" Value="White"/>
  20. <Setter Property="Width" Value="500"/>
  21. </Style>
  22. <Style TargetType="TextBox">
  23. <Setter Property="FontSize" Value="20"/>
  24. <Setter Property="Foreground" Value="Black"/>
  25. </Style>
  26. <Style TargetType="Button">
  27. <Setter Property="Width" Value="300"/>
  28. <Setter Property="FontWeight" Value="Bold"/>
  29. <Setter Property="Height" Value="40"/>
  30. <Setter Property="FontSize" Value="20"/>
  31. <Setter Property="BorderThickness" Value="0"/>
  32. <Setter Property="Background" Value="#FAECD8"/>
  33. <Setter Property="Margin" Value="25"/>
  34. </Style>
  35. <Style x:Key="Menu" TargetType="TextBlock">
  36. <Setter Property="FontSize" Value="25"/>
  37. <Setter Property="Foreground" Value="White"/>
  38. <Setter Property="FontWeight" Value="Bold"/>
  39. </Style>
  40. </Application.Resources>
  41. </Application>