Files
ShrlAlgoToolkit/NeoUI/NeoUITest/App.xaml

19 lines
1.1 KiB
Plaintext
Raw Normal View History

2025-08-20 12:10:13 +08:00
<Application
2025-08-20 12:10:35 +08:00
x:Class="NeoUITest.App"
2025-08-20 12:10:13 +08:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2025-12-23 21:35:54 +08:00
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
2025-08-20 12:10:13 +08:00
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
2025-08-24 13:49:55 +08:00
<!--<enu:ThemesDictionary Mode="Dark" Palette="Blue"/>
<enu:ControlsDictionary/>-->
2025-08-20 12:10:13 +08:00
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/Light.xaml" />
2025-12-23 21:35:54 +08:00
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/Accents/LightBlue.xaml" />
2025-08-20 12:10:35 +08:00
<!--<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/ColorPalette/DarkBlue.xaml"/>
2025-08-26 21:33:20 +08:00
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/Dark.xaml" />-->
2025-12-23 21:35:54 +08:00
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/Generic.xaml" />
2025-08-20 12:10:13 +08:00
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>