Beispiel #1
0
 private void Button_EditQuestion_Click(object sender, EventArgs e)
 {
     if (currentQuestion > 0)
     {
         Edit_Test test = new Edit_Test(testId, currentQuestion, this);
         test.ShowDialog();
     }
 }
Beispiel #2
0
        private void button_AddQuestion_Click(object sender, EventArgs e)
        {
            Edit_Test test = new Edit_Test(testId, 0, this);

            test.ShowDialog();
        }