如何在扩展内的 Visual Studio 2010 中打开 tfs 工作项?
我正在开发 VS 2010 扩展,我想知道是否有办法在团队资源管理器工作项编辑器中打开工作项?
我应该调用什么代码来完成此操作?我一无所知。
I'm developing a VS 2010 Extension, and I would like to know if there is a way to open a Work Item in the Team Explorer Work Item Editor ?
What code should I call to accomplish this? I'm clueless.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Visual Studio Gallery 中有一个扩展 TEK Workitem,允许通过超链接在 Visual Studio 中打开工作项和查询。您可以在库中找到更多详细信息:
TFS 扩展工具包。工作项
There is a extension,TEK Workitem, in Visual Studio Gallery, that allows to open workitems and queries in Visual Studio from a hyperlink. You find more details on the Gallery:
TFS Extensions Kit. Workitem
我不能 100% 确定您要什么,因为我不知道“团队资源管理器工作项编辑器”是什么。也许你只是指编辑WI的UI?
如果您想通过 TFS API 在代码中编辑 WI,请执行以下操作:
从 C# 代码在 Team Web Access 中打开工作项
对于任何想要示例的初学者来说,这是另一本很棒的读物如何使用 API 的信息如下:
Team Foundation Server 2010 API 接口
I am not 100% sure what you are asking for because I don't know what the "Team Explorer Work Item Editor" is. Maybe you simply mean the UI to edit a WI?
If you want to edit a WI in code via the TFS API you do:
Open Work Item in Team Web Access from C# Code
Another great read for anyone starting out that wants examples of how to work with the API is:
Team Foundation Server 2010 API Interface
该编辑器是 TFS 电动工具的一部分。我不知道您是否可以创建该工具窗口,然后向您显示 UI。
另一种方法可能是在 Visual Studio 中打开 Wit,然后它会自动打开文件的默认编辑器。
That editor is part of the TFS power tools. I don't know if you can create that tool window and then show you UI in.
Another approach could be to just open the wit in visual studio, which then automatically opens the default editor for the file.