I am creating a clone of Merge Wizard of TFS to add new features.
I already merged with workspakce.Merge api. Now I need a way to programatically show the Pending Changes - Conflict Window.
I already have a IVsWindowFrame from PendingChangesExt like:
GetStatus status = sourceExplorer.Workspace.Merge(sourcePath, targetPath, versionFrom, versionTo, LockLevel.None, RecursionType.Full, MergeOptionsEx.None);
IVsWindowFrame frame = pendingChanges.VsWindowFrame;
frame.Show();
When I call show(), the Pending Changes Window is refresh with checkout files, but I need to select the last button in this screen (Conflicts), to show the conflicts of Merge.
How could I programatically click on Conflict button on this screen through IVsWindowFrame ?