本文介绍了MDI表格和孩子的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
你好,
假设您有一个带有一个或多个工具栏的主窗体,并且要添加一个MDI子项,如下所示(在MDI父项中)
frmChild frm =新的frmChild();
frm.TopLevel = false;
frm.Parent = this;
frm.Show();
在这种情况下,子窗体出现在我的工具栏下方.
Hi there
Say you have a main form with one or more toolstrips and you are adding an MDI child as follows (in MDI parent)
frmChild frm = new frmChild();
frm.TopLevel = false;
frm.Parent = this;
frm.Show();
In this case the child form appears underneath my toolstrip.
Is there a simple way to prevent this?
推荐答案
这篇关于MDI表格和孩子的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!