如何修改项目文件的 Visual Studio 上下文菜单并向其添加命令

发布于 2024-11-28 06:38:46 字数 140 浏览 2 评论 0原文

我已经为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

叫思念不要吵 2024-12-05 06:38:46

如果您正在为 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

染火枫林 2024-12-05 06:38:46

你想为 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文