App.xaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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="Background" Value="White"/>
  32. <Setter Property="Margin" Value="25"/>
  33. </Style>
  34. <Style x:Key="Menu" TargetType="TextBlock">
  35. <Setter Property="FontSize" Value="20"/>
  36. <Setter Property="Foreground" Value="White"/>
  37. <Setter Property="FontWeight" Value="Bold"/>
  38. </Style>
  39. </Application.Resources>
  40. </Application>