/// <summary>
 /// Initializes a new instance of the <see cref="IssuesToolWindow"/> class.
 /// </summary>
 public IssuesToolWindow()
     : base(null)
 {
     this.Caption = "Issues Window";
     this.BitmapResourceID = 301;
     this.BitmapIndex = 1;
     this.windowToUse = new IssueWindow();
     this.Content = this.windowToUse;
 }
 /// <summary>
 ///     The threadprc.
 /// </summary>
 private void Threadprc()
 {
     var win = new Window();
     var view = new IssueWindow(this.model);
     win.Content = view;
     win.ShowDialog();
 }
 /// <summary>
 ///     The threadprc.
 /// </summary>
 private void CreateMainIssueWindow()
 {
     var win = new Window();
     var view = new IssueWindow(this.model);
     win.Content = view;
     view.UpdateDataContext(this.model);
 }