Beispiel #1
0
 public void OpenOptionsForm()
 {
     if (_optionsForm == null)
     {
         _optionsForm = new frmOptions();
         _optionsForm.ShowDialog();
         _optionsForm.Dispose();
         _optionsForm = null;
     }
     else
     {
         _optionsForm.Activate();
     }
 }
Beispiel #2
0
 public void OpenOptionsForm()
 {
     if (_optionsForm == null)
     {
         _optionsForm = new frmOptions();
         _optionsForm.ShowDialog();
         _optionsForm.Dispose();
         _optionsForm = null;
     }
     else
     {
         _optionsForm.Activate();
     }
 }