-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
31 lines (23 loc) · 1.14 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
29
30
31
<Application
x:Class="Baby.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:b="clr-namespace:Baby"
xmlns:wpf="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
StartupUri="/UI/Views/WebBrowser.xaml">
<!-- ********************************************* RESOURCES ********************************************* -->
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!-- Fonts -->
<ResourceDictionary>
<FontFamily x:Key="Roboto-Regular">pack://application:,,,/Fonts/Roboto-Regular.ttf</FontFamily>
</ResourceDictionary>
<!-- Styles -->
<ResourceDictionary Source="/UI/Themes/generic.xaml" />
<!-- Notifications -->
<ResourceDictionary Source="pack://application:,,,/ToastNotifications.Messages;component/Themes/Default.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>