App.xaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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="ListView">
  27. <Setter Property="Background" Value="#EBD1AA"/>
  28. </Style>-->
  29. <Style TargetType="Button">
  30. <Setter Property="Width" Value="300"/>
  31. <Setter Property="FontWeight" Value="Bold"/>
  32. <Setter Property="Height" Value="40"/>
  33. <Setter Property="FontSize" Value="20"/>
  34. <Setter Property="BorderThickness" Value="0"/>
  35. <Setter Property="Background" Value="#FAECD8"/>
  36. <Setter Property="Margin" Value="25"/>
  37. </Style>
  38. <Style x:Key="Menu" TargetType="TextBlock">
  39. <Setter Property="FontSize" Value="25"/>
  40. <Setter Property="Foreground" Value="White"/>
  41. <Setter Property="FontWeight" Value="Bold"/>
  42. </Style>
  43. </Application.Resources>
  44. </Application>