本文介绍了如何在MDI中显示子表单的标题栏。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个MDI应用程序,主窗体(父窗口)有一个菜单条和一个工具条。
当子窗体最大化时,其标题栏不可见,它似乎在主窗体的工具条后面。但是当它恢复时,标题栏变得可见。
任何人都可以帮助我如何使标题栏可见,即使儿童表格最大化。
谢谢,
Dev。
Hi,
I am developing an MDI appplication and the main form(parent)has a menu strip and a tool strip.
When child form is maximixed, its title bar is not visisble ,it seems it goes behind the main form's tool strip.but when it is restored down the title bar becomes visible.
Can anyone please help me in how to make the title bar visible even when the child form is maximized.
Thanks,
Dev.
推荐答案
private void FormMDI_Load(object sender, EventArgs e)
{
Form2 objForm2 = new Form2();
objForm2.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
objForm2.ControlBox = false;
objForm2.MdiParent = this;
objForm2.Dock = DockStyle.Fill;
objForm2.Show();
}
希望这会对你有帮助。
Hope this will help you.
这篇关于如何在MDI中显示子表单的标题栏。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!