Styles.axaml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Design.PreviewWith>
  4. <Border Padding="20">
  5. <!-- Add Controls for Previewer Here -->
  6. </Border>
  7. </Design.PreviewWith>
  8. <Style Selector="StackPanel.authSP">
  9. <Setter Property="Orientation" Value="Vertical"/>
  10. <Setter Property="HorizontalAlignment" Value="Center"/>
  11. <Setter Property="Margin" Value="10"/>
  12. </Style>
  13. <Style Selector="StackPanel.loginPasswordSP">
  14. <Setter Property="Orientation" Value="Vertical"/>
  15. <Setter Property="HorizontalAlignment" Value="Center"/>
  16. </Style>
  17. <Style Selector="TextBlock.authMainTitle">
  18. <Setter Property="FontSize" Value="22"/>
  19. </Style>
  20. <Style Selector="StackPanel.loginPasswordT">
  21. <Setter Property="Margin" Value="8"/>
  22. </Style>
  23. <Style Selector="TextBox.authTB">
  24. <Setter Property="Width" Value="300"/>
  25. <Setter Property="Height" Value="37"/>
  26. <Setter Property="BorderBrush" Value="#32CD32"/>
  27. <Setter Property="Background" Value="#F5F5F5"/>
  28. </Style>
  29. <Style Selector="Button.authBut">
  30. <Setter Property="Background" Value="#32CD32"/>
  31. <Setter Property="Foreground" Value="White"/>
  32. </Style>
  33. </Styles>