-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathApp.xaml
22 lines (18 loc) · 1 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
<Application x:Class="ProverbTeleprompter.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Resources/PushPinToggleStyle.xaml"/>
<ResourceDictionary Source="/Styles.xaml"/>
<ResourceDictionary Source="/Resources/Bookmark.xaml"/>
<ResourceDictionary Source="/Resources/PlayPauseStyles.xaml"/>
<ResourceDictionary Source="/Resources/MiscStyles.xaml"/>
<ResourceDictionary Source="/Resources/Resources.xaml"/>
<ResourceDictionary Source="Resources/PlayPauseStyles.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>