我在vb.net中有多个表单应用程序 现在我上升到一个条件,我想在其他形式的Groupbox / Panel控件中显示一个Form。 有没有办法实现那个??? 任何帮助表示赞赏..
答案 0 :(得分:1)
如果必须,你可以这样做。这是一个例子:
Dim f As New Form
f.TopLevel = False
f.FormBorderStyle = FormBorderStyle.None
f.Dock = DockStyle.Fill
f.Visible = True
Panel1.Controls.Add(f)
TopLevel = False
是必需的。设置FormBorderStyle和Dock样式是可选的,但可能是你想要做的。
答案 1 :(得分:0)