Visual Studio AddIn:如何将项目特定命令添加到解决方案资源管理器上下文菜单
我已经花了大约 3 天的时间尝试让它工作,但没有成功。
我对 VS.NET 可扩展性还很陌生,我发现很难调试我的问题。
我已经尝试过这里提供的代码: Visual Studio 加载项 - 将上下文菜单项添加到解决方案资源管理器
无法使其工作。调试了一下,没有抛出异常。另外,我宁愿使用插件而不是包。
有人知道:
- 如何获取解决方案资源管理器中所有上下文菜单的列表?
- 如何将自定义命令组添加到上下文菜单?
- 如何将自定义命令添加到上下文菜单的一个自定义命令组?
提前致谢。
I've spent about 3 days now trying to get this working but to no avail.
I'm fairly new to VS.NET extensibility and I find it hard to debug my problems.
I've already tried the code here presented: Visual Studio Add-In - adding a context menu item to solution-explorer
Couldnt make it work. Debugged it and no exception is being thrown. Plus I'd rather use an AddIn instead of a Package.
Anyone knows:
- How to obtain a list of all context menus in the solution explorer?
- How to add custom command groups to a context menu?
- How to add a custom command to one custom command group of a context menu?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
本文展示了如何创建和显示上下文菜单与您自己的加载项用户界面中使用的 Visual Studio 的外观和感觉相同。
This article shows how to create and display a context menu with the same look and feel than the ones of Visual Studio to be used in your own add-in user-interface.
这是我根据使用过的情况推荐的一个工具:http://vssdkassist.codeplex.com/。它针对的是 Visual Studio 包,而不是插件,但插件和 vspackage 之间的方法调用相似。我建议设置一个 vspackage 项目,使用 vssdkassist 来执行此操作,并使用它来创建上下文菜单。然后我建议研究 vssdkassist 为您设置的方法调用等。
Here is a tool that I recommend based on having used it: http://vssdkassist.codeplex.com/. It is aimed at Visual studio packages as oposed to addins, but the method calls are similar between addins and vspackages. I would recommend setting up a vspackage project, use vssdkassist to do that, and use it to create your context menu. I would then recommend researching into the method calls etc that vssdkassist sets up for you.