/// <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(); }
/// <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(); }