コード例 #1
0
ファイル: UserForm.cs プロジェクト: KaniSama/TestingSystem
        private void testOkButton_Click(object sender, EventArgs e)
        {
            TestStart ts = new TestStart(this, SelectedString[testChoice.SelectedIndex], cont);

            ts.Show();
            this.Hide();
        }
コード例 #2
0
ファイル: TestBody.cs プロジェクト: KaniSama/TestingSystem
 public TestBody(TestStart parent, string TestName, string connectionstring)
 {
     InitializeComponent();
     this.parent        = parent;
     testNameLabel.Text = TestName;
     cntstring          = connectionstring;
 }