-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.xaml
28 lines (20 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
23
24
25
26
27
28
<Application
x:Class="Cammy.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Cammy"
StartupUri="/UI/Windows/Main/MainWindow.xaml">
<!-- ************************************************* Resources ************************************************** -->
<Application.Resources>
<ResourceDictionary>
<!-- Fonts -->
<FontFamily x:Key="Roboto">pack://application:,,,/Fonts/Roboto-Regular.ttf</FontFamily>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/UI/Themes/Colors/Colors.xaml" />
<ResourceDictionary Source="/UI/Themes/generic.xaml" />
<ResourceDictionary Source="/UI/Themes/Styles.xaml" />
<ResourceDictionary Source="pack://application:,,,/ToastNotifications.Messages;component/Themes/Default.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>