/// <summary>
 /// Runs the test config form.
 /// </summary>
 private void RunTestConfig()
 {
     testConfigBox             = new ConfigTest();
     testConfigBox.FormClosed += new FormClosedEventHandler(dialogClosed);
     testConfigBox.Show();
     isActive = false;
 }
示例#2
0
 private void RunTestConfig()
 {
     testConfigBox = new ConfigTest();
     testConfigBox.FormClosed += new FormClosedEventHandler(configBoxClosed);
     testConfigBox.Show();
     isActive = false;
 }