有没有办法在默认的WinForms TextBox上下文菜单中添加额外的项目而不创建自己的项目?
答案 0 :(得分:1)
我认为您应该覆盖WndProc并捕获文本框接收的消息。
答案 1 :(得分:1)
有可能,但很复杂。我建议您使用“现代”ContextMenuStrip类而不是标准的ContextMenu来实现自己的菜单。
答案 2 :(得分:1)
子类TextBox(从中派生)或本机句柄(使用NativeWindow),然后覆盖窗口过程,如下所示:
protected override void WndProc(ref Message m)
{
if (m.Msg == <your menu id>) { ... return; }
...
if (m.Msg == 0x0093 /*WM_UAHINITMENU*/ || m.Msg == 0x0117 /*WM_INITMENUPOPUP*/ || m.Msg == 0x0116 /*WM_INITMENU*/)
{
IntPtr shortcut = m.Msg == 0x0093 ? Marshal.ReadIntPtr(m.LParam) : m.WParam;
// add <your menu id> to shortcut
...
}
...
base.WndProc(ref m);
}