所以我的表单上有 9 个按钮,当我按下一个按钮时,我想选择 9 个按钮中的一个并将他的文本更改为 - “随机”。我如何在 Visual Basic 2008/2010 中做到这一点?
我在想类似的东西
For Each buttons In Panel1.Controls
If TypeName(buttons) = "Button" Then
//select a random button and change his text to "random"
End If
Next buttons