0

我有一个 Windows 应用程序。现在,当我右键单击文件时,我得到一个上下文菜单。

在此处输入图像描述

我想要的是在内置的上下文菜单中添加一个自定义菜单项。例如,在这种情况下,“我的自定义菜单”。

在此处输入图像描述

我怎样才能做到这一点?任何链接或某种参考点都会非常有帮助。我正在使用 C#

提前谢谢了。

4

1 回答 1

0

If you would like to add a context menu in code using C#:

Here is a good reference: Visual Studio 2010 Plug-in - Adding a context-menu to the Solution Explorer

If you only want this in your IDE:

Go to Tools -> Customize

  1. Choose Commands
  2. Choose the appropriate context menu

  3. Add a new menu / command - depending on what exactly you need

enter image description here

于 2012-10-30T09:17:20.303 回答