本文介绍了LayoutMdi形式的onload事件失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您好我已经onload事件事件处理程序是这样的:
Hello I have OnLoad eventhandler like this:
private void MainView_Load(object sender, EventArgs e)
{
LayoutMdi(MdiLayout.TileVertical);
}
但没有任何反应。我如何工作的?
But nothing happens. How do I make it work?
推荐答案
是的,是行不通的。大概是因为子窗口尚不可见。它工作正常,在显示的事件:
Yes, doesn't work. Probably because the child windows aren't visible yet. It works fine in the Shown event:
protected override void OnShown(EventArgs e) {
var f2 = new Form2();
f2.MdiParent = this;
f2.Show();
f2 = new Form2();
f2.MdiParent = this;
f2.Show();
this.LayoutMdi(MdiLayout.TileVertical);
}
这篇关于LayoutMdi形式的onload事件失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!