-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDBManagerApp.xaml
More file actions
23 lines (21 loc) · 1.13 KB
/
Copy pathDBManagerApp.xaml
File metadata and controls
23 lines (21 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Application x:Class="DBManager.DBManagerApp"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:traynotify="clr-namespace:DBManager.TrayNotification"
xmlns:tb="http://www.hardcodet.net/taskbar"
xmlns:shell="clr-namespace:Microsoft.Windows.Shell;assembly=Microsoft.Windows.Shell"
StartupUri="MainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Global\GlobalResources.xaml" />
</ResourceDictionary.MergedDictionaries>
<traynotify:CActivateMainWndCommand x:Key="ActivateMainWndCommand" />
<!--
<tb:TaskbarIcon x:Key="ctrlNotifyIcon"
DoubleClickCommand="{StaticResource ActivateMainWndCommand}"
TrayBalloonTipClicked="ctrlNotifyIcon_TrayBalloonTipClicked" />
-->
</ResourceDictionary>
</Application.Resources>
</Application>