Files
ShrlAlgoToolkit/WPFluent.Gallery/App.xaml

26 lines
1.3 KiB
Plaintext
Raw Normal View History

<Application
x:Class="WPFluent.Gallery.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
2025-04-24 20:56:44 +08:00
xmlns:helpers="clr-namespace:WPFluent.Gallery.Helpers"
xmlns:local="clr-namespace:WPFluent.Gallery"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
2025-04-24 20:56:44 +08:00
DispatcherUnhandledException="OnDispatcherUnhandledException"
Exit="OnExit"
Startup="OnStartup">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
2025-04-24 20:56:44 +08:00
<ui:ThemesDictionary Theme="Light" />
<ui:ControlsDictionary />
2025-04-24 20:56:44 +08:00
<ResourceDictionary Source="Controls/GalleryNavigationPresenter.xaml" />
<ResourceDictionary Source="Controls/ControlExample.xaml" />
<ResourceDictionary Source="Controls/TypographyControl.xaml" />
<ResourceDictionary Source="Controls/PageControlDocumentation.xaml" />
</ResourceDictionary.MergedDictionaries>
2025-04-24 20:56:44 +08:00
<helpers:EnumToBooleanConverter x:Key="EnumToBooleanConverter" />
<helpers:ThemeToIndexConverter x:Key="ThemeToIndexConverter" />
<helpers:PaneDisplayModeToIndexConverter x:Key="PaneDisplayModeToIndexConverter" />
</ResourceDictionary>
</Application.Resources>
2025-04-24 20:56:44 +08:00
</Application>