20 lines
1.0 KiB
Plaintext
20 lines
1.0 KiB
Plaintext
|
|
<Application
|
||
|
|
x:Class="KeyGen.App"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:local="clr-namespace:KeyGen"
|
||
|
|
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
|
||
|
|
StartupUri="MainWindow.xaml">
|
||
|
|
<Application.Resources>
|
||
|
|
<ResourceDictionary>
|
||
|
|
<ResourceDictionary.MergedDictionaries>
|
||
|
|
<ui:ThemeResources RequestedTheme="Dark" />
|
||
|
|
<ui:XamlControlsResources />
|
||
|
|
<!--<ResourceDictionary Source="pack://application:,,,/iNKORE.UI.WPF.Modern;component/themes/schemes/dark.xaml" />
|
||
|
|
<ResourceDictionary Source="pack://application:,,,/iNKORE.UI.WPF.Modern;component/themes/themeresources.xaml" />
|
||
|
|
<ResourceDictionary Source="pack://application:,,,/iNKORE.UI.WPF.Modern;component/themes/controlsresources.xaml" />-->
|
||
|
|
</ResourceDictionary.MergedDictionaries>
|
||
|
|
</ResourceDictionary>
|
||
|
|
</Application.Resources>
|
||
|
|
</Application>
|