C# 如何使用TFS在Treeview windows控件中列出? 如何使用SoundFoundation Server列出WrWOS控件中的所有ASPX页、CS文件和文件夹式解决方案资源管理器风格,我想开发一个项目,其文件: using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.TeamFoundation.Client; using Microsoft.TeamFoundation.WorkItemTracking.Client; namespace TFS { class Program { static void Main(string[] args) { ListAllProjects("XYZ"); Console.ReadKey(); } static void ListAllProjects(String tfsServerName) { TeamFoundationServer teamFoundationServer = TeamFoundationServerFactory.GetServer(tfsServerName); teamFoundationServer.Authenticate(); WorkItemStore workItemStore = new WorkItemStore(tfsServerName); foreach (Project pr in workItemStore.Projects) { Console.WriteLine("Project Name: " + pr.Name); } // How to continue? } } }

C# 如何使用TFS在Treeview windows控件中列出? 如何使用SoundFoundation Server列出WrWOS控件中的所有ASPX页、CS文件和文件夹式解决方案资源管理器风格,我想开发一个项目,其文件: using System; using System.Collections.Generic; using System.Linq; using System.Text; using Microsoft.TeamFoundation.Client; using Microsoft.TeamFoundation.WorkItemTracking.Client; namespace TFS { class Program { static void Main(string[] args) { ListAllProjects("XYZ"); Console.ReadKey(); } static void ListAllProjects(String tfsServerName) { TeamFoundationServer teamFoundationServer = TeamFoundationServerFactory.GetServer(tfsServerName); teamFoundationServer.Authenticate(); WorkItemStore workItemStore = new WorkItemStore(tfsServerName); foreach (Project pr in workItemStore.Projects) { Console.WriteLine("Project Name: " + pr.Name); } // How to continue? } } },c#,winforms,tfs,C#,Winforms,Tfs,很快我想在Treeview源代码管理文件和文件夹中列出您能更详细地描述一下您想做什么吗?很快我想在Treeview源代码管理文件和文件夹中列出所以您想在Visual Studio之外重新实现源代码管理资源管理器?是的,先生,您是正确的!

很快我想在Treeview源代码管理文件和文件夹中列出

您能更详细地描述一下您想做什么吗?很快我想在Treeview源代码管理文件和文件夹中列出所以您想在Visual Studio之外重新实现源代码管理资源管理器?是的,先生,您是正确的!