2
0
Files
controlmymonitormanagement/DellMonitorControl/App.xaml

13 lines
643 B
Plaintext
Raw Normal View History

2023-07-02 22:17:57 +08:00
<Application x:Class="DellMonitorControl.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:tb="clr-namespace:Hardcodet.Wpf.TaskbarNotification;assembly=Hardcodet.Wpf.TaskbarNotification.Net6"
2023-07-02 22:17:57 +08:00
xmlns:local="clr-namespace:DellMonitorControl"
Startup="Application_Startup">
2023-07-02 22:17:57 +08:00
<Application.Resources>
<tb:TaskbarIcon x:Key="TrayIcon"
IconSource="/MonitorIcon.ico"
ToolTipText="Monitor Control"/>
2023-07-02 22:17:57 +08:00
</Application.Resources>
</Application>