App.xaml 1.3 KB

1234567891011121314151617181920212223242526
  1. <Application x:Class="Eight.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:Eight"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <SolidColorBrush x:Key="DefaultWhite">#FFFFFF</SolidColorBrush>
  8. <SolidColorBrush x:Key="DefaultGray">#D3D3D3</SolidColorBrush>
  9. <SolidColorBrush x:Key="DefaultPurple">#A163F5</SolidColorBrush>
  10. <Style TargetType="Button" x:Key="DefaultButton">
  11. <Setter Property="Height" Value="30"></Setter>
  12. <Setter Property="Width" Value="Auto"></Setter>
  13. <Setter Property="Background" Value="{StaticResource DefaultPurple}"></Setter>
  14. <Setter Property="Foreground" Value="{StaticResource DefaultGray}"></Setter>
  15. </Style>
  16. <Style TargetType="TextBlock" x:Key="RightSideTextBlock">
  17. <Setter Property="HorizontalAlignment" Value="Right"></Setter>
  18. <Setter Property="VerticalAlignment" Value="Center"></Setter>
  19. </Style>
  20. <Style TargetType="TextBox" x:Key="VerticalTextBox">
  21. <Setter Property="VerticalAlignment" Value="Center"></Setter>
  22. </Style>
  23. </Application.Resources>
  24. </Application>