22 lines
1006 B
XML
22 lines
1006 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="Dark" />
|
|
<ui:ControlsDictionary />
|
|
<ResourceDictionary Source="Controls/TypographyControl.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<helpers:ThemeToIndexConverter x:Key="ThemeToIndexConverter" />
|
|
<ui:InvertBooleanConverter x:Key="InvertBooleanConverter" />
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application> |