回 帖 发 新 帖 刷新版面

主题:请教MDI关联的一个错误

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

回复列表 (共2个回复)

沙发

你要确保你的主窗口是一个MdiContainer,即有一个属性this.IsMdiContainer = true;
这样才行,然后有你上面的代码就行了

板凳

this.IsMdiContainer = true;


 Form2 child = new Form2();
            child.MdiParent = this;
            child.Show();

我来回复

您尚未登录,请登录后再回复。点此登录或注册