I develop a Visual Studio extension. I attached a button to the Source Control History Window\'s Context Menu (the menu with \'changeset details\', \'co
Maybe this will be helpful for your needs: Tool Window
I dont know your other code parts, but I guess you initiate a window application, where you want to render the history list. This window application needs:
private FirstToolWindow window;
private void ShowToolWindow(object sender, EventArgs e)
{
window = (FirstToolWindow) this.package.FindToolWindow(typeof(FirstToolWindow), 0, true);
...