Notes/Notes.UI/App.axaml

18 lines
764 B
Plaintext
Raw Normal View History

2023-12-04 15:49:31 +08:00
<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">
2023-12-04 16:24:33 +08:00
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
2023-12-04 15:49:31 +08:00
<Application.Styles>
<FluentTheme />
2023-12-06 11:03:26 +08:00
<StyleInclude Source="/Views/AboutView.axaml" />
<StyleInclude Source="/Views/AllNotesView.axaml" />
<StyleInclude Source="/Views/NoteView.axaml" />
2023-12-04 15:49:31 +08:00
</Application.Styles>
2023-12-06 11:03:26 +08:00
<Application.Resources>
<local:ViewModelToResourceKeyConverter x:Key="ViewModelToResourceKeyConverter"/>
</Application.Resources>
2023-12-04 15:49:31 +08:00
</Application>