Notes/Notes.UI/App.axaml

18 lines
764 B
XML

<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Notes"
x:Class="Notes.App"
RequestedThemeVariant="Default">
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
<Application.Styles>
<FluentTheme />
<StyleInclude Source="/Views/AboutView.axaml" />
<StyleInclude Source="/Views/AllNotesView.axaml" />
<StyleInclude Source="/Views/NoteView.axaml" />
</Application.Styles>
<Application.Resources>
<local:ViewModelToResourceKeyConverter x:Key="ViewModelToResourceKeyConverter"/>
</Application.Resources>
</Application>