예제 #1
0
 private void ShowStatusForm(bool show)
 {
     if (statusForm == null)
     {
         statusForm = new StatusForm(Data, this);
         foreach (string logEntry in log)
         {
             statusForm.AddLogEntry(logEntry);
         }
     }
     statusForm.Visible = show;
 }
예제 #2
0
 private void ShowStatusForm(bool show)
 {
     if (statusForm == null)
     {
         statusForm = new StatusForm(Data, this);
         foreach (string logEntry in log)
         {
             statusForm.AddLogEntry(logEntry);
         }
     }
     statusForm.Visible = show;
 }