如何修改项目文件的 Visual Studio 上下文菜单并向其添加命令
我已经为 Visual Studio 2010 创建了新类型的项目(通过 Visual Studio SDK),该项目由 *.pat 文件组成。 *.cpp 文件在其上下文菜单中具有“编译”选项。 我想将这样的选项添加到我的文件类型的上下文菜单中。我怎样才能做到呢?
I have created new type of project for Visual Studio 2010 (By dint of Visual Studio SDK) and this project consists of *.pat files.
*.cpp files have in theirs context menu option "compile".
I want to add such option into context menu of my type of files. How i can do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您正在为 Visual Studio 创建新类型的项目,您可能正在实现 VSIX(以前的 VS 包)
要将新的菜单项添加到项目项上下文菜单,您需要声明 vsct 文件 在您的包中,并在 VSCT 内附加您的新文件菜单项到项目项菜单 GUID
If you are creating a new type of project for Visual Studio probably you are implementing a VSIX (former VS Package)
To add a new Menu Item to Project Item Contextual Menu you need to declare a vsct file in your package, and inside VSCT attach your new menu item to Project Item Menu GUID
你想为 Visual Studio 制作一个插件吗?有大量的文档和示例,例如:
第一个 Visual Studio 2010 插件
do you want to make an AddIn for Visual Studio? There is plenty of doc and samples for this, for example:
First Visual Studio 2010 AddIn