Beispiel #1
0
 /// <summary>
 /// <para>Creates a new or refreshes the existing <see cref="StatusView"/></para>
 /// </summary>
 public void RefreshStatus()
 {
     if (this.StatusView == null || this.StatusView.IsDisposed)
         this.StatusView = new StatusView(this);
     else
         this.StatusView.Refresh();
     this.StatusView.Show();
 }
Beispiel #2
0
 /// <summary>
 /// <para>Creates a new or refreshes the existing <see cref="StatusView"/></para>
 /// </summary>
 public void RefreshStatus()
 {
     if (this.StatusView == null || this.StatusView.IsDisposed)
     {
         this.StatusView = new StatusView(this);
     }
     else
     {
         this.StatusView.Refresh();
     }
     this.StatusView.Show();
 }