25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
|
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
|
<Style x:Key="ModernButton" TargetType="Button">
|
||
|
|
<Setter Property="Background" Value="#1976D2"/>
|
||
|
|
<Setter Property="Foreground" Value="White"/>
|
||
|
|
<Setter Property="Padding" Value="12,6"/>
|
||
|
|
<Setter Property="BorderThickness" Value="0"/>
|
||
|
|
<Setter Property="FontSize" Value="14"/>
|
||
|
|
<Setter Property="Margin" Value="0,0,10,0"/>
|
||
|
|
</Style>
|
||
|
|
|
||
|
|
<Style TargetType="ComboBox" BasedOn="{StaticResource {x:Type ComboBox}}">
|
||
|
|
<Setter Property="BorderThickness" Value="0"/>
|
||
|
|
<Setter Property="Height" Value="32"/>
|
||
|
|
<Setter Property="Padding" Value="8,2"/>
|
||
|
|
<Setter Property="Background" Value="#FFFFFF"/>
|
||
|
|
</Style>
|
||
|
|
|
||
|
|
<Style TargetType="DataGrid">
|
||
|
|
<Setter Property="HeadersVisibility" Value="Column"/>
|
||
|
|
<Setter Property="AutoGenerateColumns" Value="False"/>
|
||
|
|
<Setter Property="Margin" Value="0,10,0,0"/>
|
||
|
|
<Setter Property="RowHeight" Value="30"/>
|
||
|
|
</Style>
|
||
|
|
</ResourceDictionary>
|