2025-02-10 20:53:40 +08:00
|
|
|
<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"
|
2025-02-10 20:53:40 +08:00
|
|
|
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">
|
2025-02-10 20:53:40 +08:00
|
|
|
<Application.Resources>
|
|
|
|
|
<ResourceDictionary>
|
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
2025-04-24 20:56:44 +08:00
|
|
|
<ui:ThemesDictionary Theme="Light" />
|
2025-02-10 20:53:40 +08:00
|
|
|
<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" />
|
2025-02-10 20:53:40 +08:00
|
|
|
</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" />
|
2025-02-10 20:53:40 +08:00
|
|
|
</ResourceDictionary>
|
|
|
|
|
</Application.Resources>
|
2025-04-24 20:56:44 +08:00
|
|
|
</Application>
|