ContextMenuStrip
我在其中创建自定义Button
:
ContextMenuStrip _contextMenu = new ContextMenuStrip();
_contextMenu.Items.Add(new ToolStripMenuItem("Item"));
_contextMenu.Items.Add(new ToolStripControlHost(new Button()));
当我打开此上下文菜单并将鼠标移到“项目”上时,它会突出显示。但是在我单击Button
然后再次将鼠标移到“项目”上之后,它不再突出显示。看起来像Button
捕获鼠标。Button
单击后如何避免这种情况或释放捕获?