I am making an app that has a notify icon in WPF. I am using HardCodet NotifyIcon. They do have a tutorial on code project and it is pretty useful but it does not have any explanation on how to set up OnClick
or Click
event when the buttons in the context menu are pressed.
I have gone through every property in NotifyIcon.ContextMenu.Items
and NotifyIcon.ContextMenu.Items.GetItemAt(i)
(TaskbarIcon NotifyIcon = (TaskbarIcon) FindResource("MyNotifyIcon")
) but there is nothing I found. I also tried typecasting the buttons to MenuItem
and using its Click
event but it didn't help.
This is my App.xaml
:
<Application.Resources>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:tb="http://www.hardcodet.net/taskbar">
<tb:TaskbarIcon x:Key="MyNotifyIcon"
ToolTipText="Hello There">
<tb:TaskbarIcon.ContextMenu>
<ContextMenu Background="White">
<MenuItem Header="Open"/>
<MenuItem Header="Settings"/>
<MenuItem Header="Sign Out"/>
<MenuItem Header="Help"/>
<MenuItem Header="Exit"/>
</ContextMenu>
</tb:TaskbarIcon.ContextMenu>
</tb:TaskbarIcon>
</ResourceDictionary>
</Application.Resources>
I need the buttons to control the MainWindow
e.g. change the Visibility
etc..