你好:
1. 修改MDIParent的背景色可以按照以下文档中的方法来做:
http://support.microsoft.com/kb/319465
2. 如果一个Form被设置为IsMdiContainer, 那么默认会有一个MdiClient控件会放置到Form中,正常情况下MdiClient中的子窗体都会被父窗体中的控件(菜单控件或者其他控件)所覆盖。通过MdiClient的BringToFront方法可以将MdiClient放置于父窗体的控件之上,但是这样一来父窗体的控件就看不到了。使用IsMdiContainer这种方式是不建议在父窗体中添加其他控件的。
我的建议是你直接使用ShowDialog方式显示出一个模态窗口就可以了。
Form2 form2 = new Form2();
form2.Show();
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.