22 lines
991 B
XML
22 lines
991 B
XML
<Window x:Class="DellMonitorControl.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:tb="clr-namespace:Hardcodet.Wpf.TaskbarNotification;assembly=Hardcodet.Wpf.TaskbarNotification.Net6"
|
|
xmlns:local="clr-namespace:DellMonitorControl"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
|
|
<Grid>
|
|
<tb:TaskbarIcon x:Name="taskbar"
|
|
IconSource="/DellLogo.ico"
|
|
ToolTipText="螢幕開關"
|
|
PopupActivation="LeftOrDoubleClick">
|
|
<tb:TaskbarIcon.TrayPopup>
|
|
<local:ControlPanel x:Name="comtrolPanel"/>
|
|
</tb:TaskbarIcon.TrayPopup>
|
|
</tb:TaskbarIcon>
|
|
</Grid>
|
|
</Window>
|