-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml
19 lines (18 loc) · 924 Bytes
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Application x:Class="DnsSnap.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:DnsSnap"
StartupUri="Pages/MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Style/Button.xaml"/>
<ResourceDictionary Source="Style/combobox.xaml"/>
<ResourceDictionary Source="Style/ContextMenu.xaml"/>
<ResourceDictionary Source="Style/Colors.xaml"/>
<ResourceDictionary Source="Function/Notifico.xaml"/>
<ResourceDictionary Source="Style/Controls.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>