31 lines
1.3 KiB
XML
31 lines
1.3 KiB
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:materialIcons="clr-namespace:Material.Icons.Avalonia;assembly=Material.Icons.Avalonia"
|
|
x:Class="StarsAssistant.App"
|
|
xmlns:local="using:StarsAssistant"
|
|
RequestedThemeVariant="Default">
|
|
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
|
|
|
<Application.DataTemplates>
|
|
<local:ViewLocator/>
|
|
</Application.DataTemplates>
|
|
|
|
<Application.Styles>
|
|
<FluentTheme DensityStyle="Compact" />
|
|
<materialIcons:MaterialIconStyles />
|
|
<StyleInclude Source="avares://Avalonia.Controls.DataGrid/Themes/Fluent.xaml"/>
|
|
|
|
<Style Selector="DataGridColumnHeader">
|
|
<Setter Property="Margin" Value="0" />
|
|
<Setter Property="Padding" Value="0" />
|
|
<Setter Property="MinHeight" Value="20" />
|
|
</Style>
|
|
|
|
<Style Selector="DataGridCell">
|
|
<Setter Property="Margin" Value="0" />
|
|
<Setter Property="Padding" Value="0" />
|
|
<Setter Property="MinHeight" Value="20" />
|
|
</Style>
|
|
|
|
</Application.Styles>
|
|
</Application> |