19 lines
977 B
Plaintext
19 lines
977 B
Plaintext
|
|
<Application
|
||
|
|
x:Class="WpfApp.App"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
||
|
|
StartupUri="MainWindow.xaml">
|
||
|
|
<Application.Resources>
|
||
|
|
<ResourceDictionary>
|
||
|
|
<ResourceDictionary.MergedDictionaries>
|
||
|
|
<ui:ThemesDictionary Theme="Dark" />
|
||
|
|
<ui:ControlsDictionary />
|
||
|
|
<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>
|