34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Sms.TaskTwo.Avalonia.App"
|
|
RequestedThemeVariant="Light">
|
|
<Application.Styles>
|
|
<StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Fluent.xaml" />
|
|
<FluentTheme />
|
|
<Style Selector="DataGrid.roundedGrid">
|
|
<Setter Property="RowHeight" Value="32" />
|
|
<Setter Property="Background" Value="Transparent" />
|
|
</Style>
|
|
<Style Selector="DataGrid.roundedGrid DataGridColumnHeader">
|
|
<Setter Property="Background" Value="Transparent" />
|
|
</Style>
|
|
<Style Selector="DataGrid.roundedGrid DataGridColumnHeader /template/ Border#HeaderBorder">
|
|
<Setter Property="Background" Value="Transparent" />
|
|
<Setter Property="BorderBrush" Value="Transparent" />
|
|
</Style>
|
|
<Style Selector="DataGridRow.appSettings">
|
|
<Setter Property="Background" Value="#E3F2FD" />
|
|
</Style>
|
|
<Style Selector="DataGridRow.custom">
|
|
<Setter Property="Background" Value="#FFF8E1" />
|
|
</Style>
|
|
<Style Selector="DataGridRow.userStore">
|
|
<Setter Property="BorderBrush" Value="#2E7D32" />
|
|
<Setter Property="BorderThickness" Value="0,0,0,2" />
|
|
</Style>
|
|
<Style Selector="DataGridRow.appSettings.userStore">
|
|
<Setter Property="Background" Value="#C8E6C9" />
|
|
</Style>
|
|
</Application.Styles>
|
|
</Application>
|