App.xaml 874 B

123456789101112131415161718
  1. <Application x:Class="PP_Ven_MosS.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:PP_Ven_MosS"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style x:Key="GBSt" TargetType="GroupBox">
  8. <Setter Property="BorderBrush" Value="#FF0000"></Setter>
  9. <Setter Property="Width" Value="300"></Setter>
  10. <Setter Property="BorderThickness" Value="1"></Setter>
  11. </Style>
  12. <Style x:Key="BtnSt" TargetType="Button">
  13. <Setter Property="Background" Value="#FF0000"></Setter>
  14. <Setter Property="Height" Value="30"></Setter>
  15. <Setter Property="Width" Value="200"></Setter>
  16. </Style>
  17. </Application.Resources>
  18. </Application>