コード例 #1
0
ファイル: Main.cs プロジェクト: Jonny007-MKD/Trigger4Win
 /// <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();
 }
コード例 #2
0
ファイル: Main.cs プロジェクト: Jonny007-MKD/Trigger4Win
 /// <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();
 }