2021-09-27 12:42:46 +00:00
|
|
|
<Application xmlns="https://github.com/avaloniaui"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:local="using:Wabbajack.App"
|
|
|
|
x:Class="Wabbajack.App.App">
|
|
|
|
<Application.DataTemplates>
|
2021-10-23 16:51:17 +00:00
|
|
|
<local:ViewLocator />
|
2021-09-27 12:42:46 +00:00
|
|
|
</Application.DataTemplates>
|
|
|
|
|
|
|
|
<Application.Styles>
|
2021-10-23 16:51:17 +00:00
|
|
|
<StyleInclude Source="avares://Material.Icons.Avalonia/App.xaml" />
|
|
|
|
<FluentTheme Mode="Dark" />
|
|
|
|
<StyleInclude Source="avares://Wabbajack.App/Assets/Wabbajack.axaml" />
|
2021-09-27 12:42:46 +00:00
|
|
|
<Style Selector="Button:not(:pointerover) /template/ ContentPresenter">
|
2021-10-23 16:51:17 +00:00
|
|
|
<Setter Property="Background" Value="Transparent" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</Style>
|
2021-10-23 16:51:17 +00:00
|
|
|
|
|
|
|
|
2021-09-27 12:42:46 +00:00
|
|
|
<Style Selector="Button:pointerover /template/ ContentPresenter">
|
2021-10-23 16:51:17 +00:00
|
|
|
<Setter Property="Background" Value="Transparent" />
|
|
|
|
<Setter Property="BorderBrush" Value="LightGray" />
|
|
|
|
<Setter Property="CornerRadius" Value="5" />
|
2021-09-27 12:42:46 +00:00
|
|
|
</Style>
|
|
|
|
</Application.Styles>
|
2021-10-23 16:51:17 +00:00
|
|
|
</Application>
|