2024-09-22 11:05:41 +08:00
|
|
|
<Application
|
|
|
|
|
x:Class="WpfApp.App"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2025-02-10 20:53:40 +08:00
|
|
|
xmlns:wpf="https://github.com/ShrlAlgo/WPFluent"
|
2024-09-22 11:05:41 +08:00
|
|
|
StartupUri="MainWindow.xaml">
|
|
|
|
|
<Application.Resources>
|
|
|
|
|
<ResourceDictionary>
|
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
2025-02-10 20:53:40 +08:00
|
|
|
<wpf:ThemesDictionary Theme="Dark" />
|
|
|
|
|
<wpf:ControlsDictionary />
|
2024-09-22 11:05:41 +08:00
|
|
|
<ResourceDictionary Source="pack://application:,,,/Wpf.Ui.Extend;component/Resources/Wpf.Ui.Extend.xaml" />
|
|
|
|
|
<!--<ResourceDictionary Source="pack://application:,,,/ColorPicker;component/Styles/DefaultColorPickerStyle.xaml" />-->
|
|
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
|
<FontFamily x:Key="SegoeFluentIcons">pack://application:,,,/WpfApp;component/Fonts/#Segoe Fluent Icons</FontFamily>
|
|
|
|
|
</ResourceDictionary>
|
|
|
|
|
</Application.Resources>
|
|
|
|
|
</Application>
|