主题:请教MDI关联的一个错误
其中出错的一段
private void button1_Click(object sender, EventArgs e)
{
Form2 child = new Form2();
child.MdiParent = this;
child.Show();
}
错误:无法使用实例引用访问静态成员“WindowsApplication1.Form2.Show()”;改用类型名来限定它
为什么?
private void button1_Click(object sender, EventArgs e)
{
Form2 child = new Form2();
child.MdiParent = this;
child.Show();
}
错误:无法使用实例引用访问静态成员“WindowsApplication1.Form2.Show()”;改用类型名来限定它
为什么?