在这里,我有一个代码,允许我获取面板中每个按钮控件的所有文本并将它们用作 a 的输入,RichTextBox
但有一个问题。
for each
单击的按钮 我希望该按钮打印的按钮的文本有问题。
我还是vb的新手,所以...
这是代码。
Dim btn As Button
For Each btn In panel3.Controls
'here i should have some soft of if statement to check if a btn is clicked
Msgbox (btn.Text) ' shows the text of the button ' should be in the if statement
Next