右键单击系统托盘中的上下文菜单

时间:2011-01-15 16:32:53

标签: wpf contextmenu

我有一个在系统托盘中运行的WPF应用程序。我正在尝试创建一个上下文菜单,当您右键单击托盘中的图标时,该菜单会弹出。这是XAML:

<Window.Resources>
        <ContextMenu x:Key="NotifierContextMenu" Placement="MousePoint">
            <MenuItem Header="Exit" Click="Menu_Exit"/>
        </ContextMenu>
    </Window.Resources>

以下是代码隐藏:

void NotifyIcon_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
        {
            if (e.Button == System.Windows.Forms.MouseButtons.Right)
            {
                var menu = this.FindResource("NotifierContextMenu") as ContextMenu;
                menu.IsOpen = true;
            }
        }

        protected void Menu_Exit(object sender, RoutedEventArgs e)
        {
            NotifyIcon.Visible = false;
            Application.Current.Shutdown();
        }

我遇到的问题是,当您右键单击该图标时,会抛出NotifierContextMenu无法找到的错误。我错过了什么?

1 个答案:

答案 0 :(得分:2)

我自己尝试过没有问题。 MouseDown的事件处理程序实际上是NotifierContextMenu创建的同一个类的一部分吗?

也许尝试制作一些代码来列出资源,看看你是否可以匹配它所引用的资源集。