Download: http://visualstudiogallery.... Date Version Changes 20 May 2014 v1.2.9 Incorporated latest API changes Fix for infinite message box issue when connection is lost with server. 01 May 2014 v1.2.8 Modified logic to show the Team Rooms button in Team Explorer Minor UI fixes 23 Mar 2014 v1.2.7 Incorporated latest API changes 11 Jan 2014 v1.2.6 New Features: Trends – See what is hot topic in your chat stream, helps you to identify burning issues ......
Assumption: You have a toolwindow in your extension and show it on click of a menu/button/link as below. ToolWindowPane windowPane = Package.FindToolWindow(type... 0, true); var control = windowPane.Content as TeamRoomToolWindowContent; if (control != null) { var frame = windowPane.Frame as IVsWindowFrame; if (frame != null) { frame.Show(); } } OR IVsUIShell service = _serviceProvider.GetService... as IVsUIShell; if (service != null) { IVsWindowFrame winFrame; ......