0

我知道如何在运行时制作一个表单并将控件添加到它并将它们连接到处理程序......我想知道的是如何使这个表单内的控件与其容器表单做出反应,例如关闭它?

为了更清楚,当我想通过一个按钮关闭启动表单时,我只需在所需的处理程序中添加以下代码:

Me.Close()

那么,我应该写什么而不是“我”来关闭运行时创建的表单?!

提前致谢。

4

1 回答 1

0

您使用引用运行时创建的表单的变量而不是 Me。

例如:

Dim customform As New Form()
' add some controls here before showing the form
customform.Show()
' when you're done with the form
customform.Close()
于 2012-07-15T14:12:32.530 回答