public StackTraceExplorerToolWindow() : base(null)
        {
            Caption = _caption;
            Content = new StackTraceExplorerToolWindowControl();

            _windowEvents = EnvDteHelper.Dte.Events.WindowEvents;
            _windowEvents.WindowActivated += _windowEvents_WindowActivated;
        }
 public StackTraceExplorerToolWindow() : base(null)
 {
     Caption = "Stack Trace Explorer";
     Content = new StackTraceExplorerToolWindowControl();
 }