-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.xaml
More file actions
26 lines (25 loc) · 1.31 KB
/
Copy pathApp.xaml
File metadata and controls
26 lines (25 loc) · 1.31 KB
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
<Application x:Class="AutoDiscordRPC.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:AutoDiscordRPC"
xmlns:viewModel="clr-namespace:AutoDiscordRPC.MVVM.ViewModel"
xmlns:view="clr-namespace:AutoDiscordRPC.MVVM.View">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Themes/PresenceCard.xaml"/>
<ResourceDictionary Source="/Themes/StylishScrollbar.xaml"/>
<ResourceDictionary Source="/Themes/NotifyIconResources.xaml"/>
<ResourceDictionary Source="/Themes/ModernTextbox.xaml"/>
<ResourceDictionary Source="/Themes/ToggleButton.xaml"/>
<ResourceDictionary Source="/Themes/ModernButton.xaml"/>
</ResourceDictionary.MergedDictionaries>
<DataTemplate DataType="{x:Type viewModel:HomeViewModel}">
<view:HomeView/>
</DataTemplate>
<DataTemplate DataType="{x:Type viewModel:CreateViewModel}">
<view:CreateView/>
</DataTemplate>
</ResourceDictionary>
</Application.Resources>
</Application>