Files
Shrlalgo.RvKits/WPFluent.Gallery/App.xaml
2025-05-05 17:04:06 +08:00

22 lines
1007 B
XML

<Application
x:Class="WPFluent.Gallery.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:helpers="clr-namespace:WPFluent.Gallery.Helpers"
xmlns:local="clr-namespace:WPFluent.Gallery"
xmlns:ui="https://github.com/ShrlAlgo/WPFluent"
StartupUri="Views/Windows/MainWindow.xaml" >
<!--Exit="OnExit"-->
<!--Startup="OnStartup"-->
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ui:ThemesDictionary Theme="Light" />
<ui:ControlsDictionary />
<ResourceDictionary Source="Controls/TypographyControl.xaml" />
</ResourceDictionary.MergedDictionaries>
<helpers:ThemeToIndexConverter x:Key="ThemeToIndexConverter" />
<ui:InvertBooleanConverter x:Key="InvertBooleanConverter" />
</ResourceDictionary>
</Application.Resources>
</Application>