0

我做测验的时候写了这个。

我声明,如果radioButton1选中,您将获得 1 分,并显示在下一个表格中。就像现在一样,我的程序为每个问题打开了一个新表格,并且不会隐藏旧表格。

Form2 fm2 = new Form2();
if (radioButton1.Checked)
{
    int poäng = 1;
    fm2.lblAntalPoäng.Text = poäng.ToString();
    fm2.ShowDialog();
}
4

2 回答 2

1
 Form a = new Form();            
 this.Hide(); // If you are in Class Form b
 a.ShowDialog();
 this.Show(); // this will enable the Parent (Hidden)form to reappear.
于 2013-10-12T12:41:27.290 回答
1
Form1.Hide();

如果你在课堂上,那么:

this.Hide();
于 2013-10-12T08:36:25.283 回答