You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
808 B

<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:icons="using:Material.Icons.Avalonia"
xmlns:styles="using:Material.Styles.Themes"
x:Class="JiLinApp.App"
RequestedThemeVariant="Default">
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
<Application.Styles>
<icons:MaterialIconStyles />
<styles:MaterialTheme BaseTheme="Light" PrimaryColor="Blue" SecondaryColor="Lime" />
<Style Selector="ComboBox">
<Setter Property="MaxDropDownHeight" Value="350" />
</Style>
<Style Selector="ComboBox:disabled Border[Name=PART_Border]">
<Setter Property="BorderBrush" Value="#a6a6a6" />
</Style>
</Application.Styles>
</Application>