我有一个资源字典,里面有一个上下文菜单:
<ResourceDictionary x:Class="MyApp.Components.MyContextMenu"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:MyApp"
xmlns:components="clr-namespace:MyApp.Components">
<ContextMenu ContextMenuOpening="OnContextMenuOpening">
并且资源字典 XAML 后面有以下代码:
using System;
using System.Windows;
using System.Windows.Controls;
namespace MyApp.Components
{
public partial class MyContextMenu : ResourceDictionary
{
public MyContextMenu()
{
InitializeComponent();
}
void OnContextMenuOpening(object sender, ContextMenuEventArgs e)
{
Console.WriteLine("here i am!");
}
}
}
日志没有出现。我想知道为什么事件没有触发或没有到达正确的位置 - 问题是因为我已将上下文菜单包装在此资源字典中吗?
更新:有趣的是,如果我删除代码隐藏函数,我会在编译过程中收到错误:
不包含“ContextMenu_OnContextMenuOpening”的定义,并且找不到接受“MyApp.Components.MyContextMenu”类型的第一个参数的扩展方法“ContextMenu_OnContextMenuOpening”(您是否缺少 using 指令或程序集引用?)
更新 2:看起来两者都Console.WriteLine
产生Debug.WriteLine
输出,但只是“随机”,尤其是当我在项目底部附近单击时。某种碰撞检测可能不起作用?