20 lines
745 B
XML
20 lines
745 B
XML
<Application xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="ZTools.App"
|
|
xmlns:local="using:ZTools"
|
|
RequestedThemeVariant="Default">
|
|
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
|
|
|
<Application.DataTemplates>
|
|
<local:ViewLocator />
|
|
</Application.DataTemplates>
|
|
|
|
<Application.Styles>
|
|
<FluentTheme />
|
|
<StyleInclude Source="../Assets/Icon.axaml"></StyleInclude>
|
|
</Application.Styles>
|
|
|
|
<Application.Resources>
|
|
<!-- <Bitmap x:Key="MyIcon" Uri="avares://ZTools/Assets/icon.png" /> -->
|
|
</Application.Resources>
|
|
</Application> |