我有一个在系统托盘中运行的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。我想念什么?

最佳答案

我自己尝试了一下,没有任何问题。您的MouseDown事件处理程序实际上是与创建NotifierContextMenu的同一类的一部分,对吗?

也许尝试编写一些代码以列出资源,以查看是否可以匹配它所引用的资源集。

10-08 00:34