mirror of
https://gitlab.com/nullmax17/PlombirLauncher.git
synced 2025-03-14 18:01:12 +03:00
25 lines
729 B
Plaintext
25 lines
729 B
Plaintext
|
<Application
|
||
|
xmlns="https://github.com/avaloniaui"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
x:Class="LauncherGUI.App"
|
||
|
xmlns:local="using:LauncherGUI"
|
||
|
RequestedThemeVariant="Default"
|
||
|
>
|
||
|
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
||
|
|
||
|
<Application.DataTemplates>
|
||
|
<local:ViewLocator />
|
||
|
</Application.DataTemplates>
|
||
|
|
||
|
<Application.Styles>
|
||
|
<FluentTheme />
|
||
|
</Application.Styles>
|
||
|
|
||
|
<Application.Resources>
|
||
|
<FontFamily
|
||
|
x:Key="QuicksandFont"
|
||
|
>avares://Launcher-UI/Assets/Fonts/Quicksand-SemiBold.ttf#Quicksand</FontFamily>
|
||
|
</Application.Resources>
|
||
|
|
||
|
</Application>
|