private void cxFlatButton2_Click(object sender, EventArgs e) { SetQuestForm setQuestForm = new SetQuestForm(); setQuestForm.Show(); this.Hide(); }
private void cxFlatButton1_Click(object sender, EventArgs e) { ques = listView1.SelectedItems[0].SubItems[2].Text; MessageBox.Show(ques); SetQuestForm setQuestForm = new SetQuestForm(); setQuestForm.ques_Value = ques; setQuestForm.Show(); this.Hide(); }