0

我有一个默认创建的表单。这是按照我想要的方式设计的,现在我想动态创建一个新表单,但我想将新表单设置为与默认创建的表单完全相同。在 VB.NET (WinForms) 和环境 VS2010 中编程。

我到目前为止:

Dim newWindow As new Form

newWindow = Me

newWindow.Show()

我知道应该有类似 newWindow 继承 Form1 但不知道把它放在哪里=S

提前致谢。

4

1 回答 1

3

您当前正在创建一个表单,然后将您当前的表单分配给它。您需要New创建表单的另一个实例,然后您可以将其与主表单一起显示。

Dim newWindow As New Form1 'Name of my Default Form's Class assuming Form1.
newWindow.Show() 
于 2012-08-16T03:25:36.240 回答