我是 WinForms VB NET 编程的初学者。我需要在运行时创建文本框。
我在搜索引擎中找到了如何实现这一点的示例:
Private Sub Command1_Click()
Dim TextControl As TextBox
ControlID = ControlID + 1
Load Text1(ControlID)
Set TextControl = Text1(ControlID)
With TextControl
.Left = (Text1(ControlID - 1).Left + Text1(ControlID - 1).Width) + 10
.Top = 20
.Width = 100
.Height = 20
.Visible = True
End With
End Sub
但是我对示例代码有一些困难。
有人会解释以下 VB NET 代码行吗?
Load Text1(ControlID)
Set TextControl = Text1(ControlID)
With TextControl
End With