-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.xaml
17 lines (16 loc) · 887 Bytes
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Application x:Class="darknet_demo_wpf.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:darknet="clr-namespace:Dark.Net.Wpf;assembly=DarkNet"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!-- This will be replaced with the correct skin to match the title bar theme by SkinManager -->
<!-- <ResourceDictionary Source="Skins/Skin.Dark.xaml" /> -->
<!-- <ResourceDictionary Source="Skins/Skin.Light.xaml" /> -->
</ResourceDictionary.MergedDictionaries>
<darknet:SkinManager x:Key="skinManager"/>
</ResourceDictionary>
</Application.Resources>
</Application>