示例#1
0
        private void testOkButton_Click(object sender, EventArgs e)
        {
            TestStart ts = new TestStart(this, SelectedString[testChoice.SelectedIndex], cont);

            ts.Show();
            this.Hide();
        }
示例#2
0
 public TestBody(TestStart parent, string TestName, string connectionstring)
 {
     InitializeComponent();
     this.parent        = parent;
     testNameLabel.Text = TestName;
     cntstring          = connectionstring;
 }