Visual Studio 扩展开发:参考挂起如何更改 window

Visual Studio Extension Development: How reference pending changes window

我需要开发一个 Visual Studio 扩展,但即使环顾四周,我也没有找到关于如何参考 VS 工具 window(在我的案例中是待定更改)来自定义它的示例,并且添加一些额外的功能。

有人可以给个提示或者 url 我在哪里可以找到这个?

提前致谢

由于您的待定更改是一个团队资源管理器工具Window,如果您要将自定义按钮添加到团队资源管理器,请参考:

https://social.msdn.microsoft.com/Forums/en-US/198f36bf-0606-4b99-b736-1a786cdf5183/how-to-add-a-custom-button-in-teamexplorer-queryresultgrid-toolbar-and-workitem-toolbar?forum=vsx

如果您想添加其他功能,我建议您可以创建一个 custom tool window, add the feathers as you want, Get the Pending Changes information via IPendingChangesExt , and here is a sample about HOWTO: Get the Pending Changes in the Team Explorer of Visual Studio from a package