コード例 #1
0
 private void UpdateHistoryWindow()
 {
     if (historyWindow == null)
     {
         return;
     }
     if (historyWindow.IsDisposed)
     {
         historyWindow = null;
         return;
     }
     historyWindow.UpdateStats();
 }
コード例 #2
0
 private void historyButton_Click(object sender, EventArgs e)
 {
     historyWindow = new HistoryWindow(statsReporter);
     historyWindow.Show();
 }