-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
17 lines (17 loc) · 969 Bytes
/
Copy pathApp.xaml
File metadata and controls
17 lines (17 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Application x:Class="KillerShell.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!-- [0] Grunge palette - swapped in place at runtime by ThemeManager -->
<ResourceDictionary Source="Themes/Dark.xaml"/>
<!-- Shared KillerUI control styles, then KillerShell's app-specific styles -->
<ResourceDictionary Source="Controls/Controls.xaml"/>
<ResourceDictionary Source="Controls/AppStyles.xaml"/>
<!-- [3] string base (LocaleManager layers the chosen locale at [4]) -->
<ResourceDictionary Source="Strings/en-US.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>