本文介绍了设计时的控制数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何像VB6一样在设计时创建控件数组?有没有可能?我知道在运行时创建该代码的代码..

How to create array of control in design time as in VB6? Is it possible or not? I know code to create that on run time..

推荐答案

Private Sub CreatButton()
        Dim btnYes As System.Windows.Forms.Button
        ' Create control
        btnYes = New System.Windows.Forms.Button()
        ' Set button properties
        btnYes.Name = "ButtonYes"
        btnYes.Size = New System.Drawing.Size(70, 30)
        btnYes.Location = New System.Drawing.Point(300, 30)
        btn.TabIndex = 1
        btnYes.Text = "YES"
        ' add to the parent form's controls collection
        Me.Controls.Add(btnYes)
End Sub



祝你好运!



Good luck!


这篇关于设计时的控制数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 19:27