首页上一页 1 下一页尾页 1 条记录 1/1页
MID子窗体不能移动的问题
发表在C#图书答疑
2017-08-11
《C#从入门到精通(第4版)》第12章 Windows应用程序高级控件
是否精华
是
否
版块置顶:
是
否
private void Form1_Load(object sender, EventArgs e)
{
Form3 f3 = new Form3();
f3.Show();
f3.MdiParent = this;
Form2 f2 = new Form2();
f2.Show();
f2.MdiParent = this;
}
设置了Form1为父窗体 运行后只有FORM2,没有3,而且FORM2不可以移动,请问是怎么回事情呢?谢谢!