Files
ShrlAlgoToolkit/NeoUI/NeoUITest/App.xaml

23 lines
1.2 KiB
Plaintext
Raw Normal View History

2025-08-20 12:10:13 +08:00
<Application
StartupUri="MainWindow.xaml"
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-08-24 13:49:55 +08:00
xmlns:enu="https://github.com/ShrlAlgo/NeoUI"
2025-08-20 12:10:13 +08:00
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<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:35 +08:00
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/ColorPalette/LightBlue.xaml"/>
2025-08-20 12:10:13 +08:00
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/Light.xaml" />
2025-08-20 12:10:35 +08:00
<!--<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/ColorPalette/DarkBlue.xaml"/>
<ResourceDictionary Source="pack://application:,,,/NeuWPF;component/Themes/Dark.xaml" />-->
2025-08-24 13:49:55 +08:00
<ResourceDictionary Source="pack://application:,,,/NeoUI;component/Themes/Styles.xaml" />
2025-08-20 12:10:13 +08:00
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>