Files
ShrlAlgoToolkit/WPFluent.Gallery/App.xaml

22 lines
1006 B
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-05-05 17:04:06 +08:00
StartupUri="Views/Windows/MainWindow.xaml" >
<!--Exit="OnExit"-->
<!--Startup="OnStartup"-->
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
2025-07-11 09:20:23 +08:00
<ui:ThemesDictionary Theme="Dark" />
<ui:ControlsDictionary />
2025-04-24 20:56:44 +08:00
<ResourceDictionary Source="Controls/TypographyControl.xaml" />
</ResourceDictionary.MergedDictionaries>
2025-04-24 20:56:44 +08:00
<helpers:ThemeToIndexConverter x:Key="ThemeToIndexConverter" />
2025-05-05 17:04:06 +08:00
<ui:InvertBooleanConverter x:Key="InvertBooleanConverter" />
</ResourceDictionary>
</Application.Resources>
2025-04-24 20:56:44 +08:00
</Application>