-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.xaml
22 lines (22 loc) · 1.08 KB
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Application x:Class="sShell.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:sShell"
StartupUri="pack://application:,,,/Windows/SplashScreen.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary
Source="pack://application:,,,/Styles/Themes/DarkTheme.xaml"/>
<ResourceDictionary
Source="pack://application:,,,/Styles/GenericStyles.xaml"/>
<ResourceDictionary
Source="pack://application:,,,/Styles/ScrollViewer.xaml"/>
<ResourceDictionary
Source="pack://application:,,,/Styles/TreeView.xaml"/>
<ResourceDictionary
Source="pack://application:,,,/Styles/ComboBox.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>