-
Notifications
You must be signed in to change notification settings - Fork 2
/
App.xaml
24 lines (24 loc) · 1.01 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
23
24
<Application
x:Class="SFVipPlayer.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:SFVipPlayer"
xmlns:themes="http://metro.apps.com/xaml/themes"
xmlns:controls="http://metro.apps.com/xaml/controls">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary
Source="pack://application:,,,/libthemes;component/Themes/Blue.xaml" />
<ResourceDictionary
Source="pack://application:,,,/libthemes;component/Themes/Controls.xaml" />
<ResourceDictionary
Source="pack://application:,,,/libthemes;component/Themes/Animations.xaml" />
<ResourceDictionary
Source="pack://application:,,,/libthemes;component/Themes/Icons.xaml" />
<ResourceDictionary
Source="pack://application:,,,/Language/English.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>