12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <Styles xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Design.PreviewWith>
- </Design.PreviewWith>
- <Style Selector="UserControl">
- <Setter Property="Background" Value="#EDE7F6"/>
- <Setter Property="Padding" Value="20"/>
- </Style>
- <Style Selector="TextBlock">
- <Setter Property="Foreground" Value="#9272ba"/>
- <Setter Property="FontSize" Value="16"/>
- </Style>
- <Style Selector="ComboBox">
- <Setter Property="Background" Value="#D1C4E9"/>
- <Setter Property="Foreground" Value="#4A148C"/>
- <Setter Property="BorderBrush" Value="#7B1FA2"/>
- <Setter Property="BorderThickness" Value="2"/>
- <Setter Property="Padding" Value="5"/>
- </Style>
- <Style Selector="NumericUpDown">
- <Setter Property="Background" Value="#D1C4E9"/>
- <Setter Property="Foreground" Value="#4A148C"/>
- <Setter Property="BorderBrush" Value="#7B1FA2"/>
- <Setter Property="BorderThickness" Value="2"/>
- <Setter Property="Padding" Value="5"/>
- </Style>
- <Style Selector="Button">
- <Setter Property="Background" Value="#7B1FA2"/>
- <Setter Property="Foreground" Value="#FFFFFF"/>
- <Setter Property="Padding" Value="10"/>
- <Setter Property="BorderBrush" Value="#4A148C"/>
- <Setter Property="BorderThickness" Value="2"/>
- <Setter Property="FontSize" Value="16"/>
- <Setter Property="Cursor" Value="Hand"/>
- </Style>
- <Style Selector="Button:hover">
- <Setter Property="Background" Value="#9C27B0"/>
- </Style>
- </Styles>
|