Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 vb.net 中有多个表单应用程序现在我上升到我想在其他表单的 Groupbox/Panel 控件中显示一个表单的条件。有什么办法可以实现吗???任何帮助表示赞赏..
如果必须,您可以这样做。这是一个例子:
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 样式是可选的,但可能是您想要做的。
TopLevel = False
您不能将表单放在另一个表单上 - 为此使用用户控件。
看
用户控制与 Windows 窗体