1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim t1 As New TEST
't1.bouton = New Button
t1.bouton.Location = New Point(80, 20)
t1.bouton.Visible = True
t1.bouton.Size = New Size(40, 40)
t1.bouton.Cursor = Cursors.Hand
't_case(i, j).mybutton.Text = ""
Me.Controls.Add(t1.bouton)
't1.bouton = New Button
t1.text.Location = New Point(20, 20)
t1.text.Visible = True
t1.text.Size = New Size(40, 40)
't1.bouton.Cursor = Cursors.Hand
't_case(i, j).mybutton.Text = ""
Me.Controls.Add(t1.text)
'AddHandler t_case(i, j).mybutton.Click, AddressOf caseClick
End Sub |
Partager