我必须分析 CheckBoxes 是否被选中。一个 TabPage 中有 10 个 CB,它们按顺序命名(cb1、cb2、cb3.. 等)。
For Each c As CheckBox In TabPage4.Controls
If c.Checked Then
hello = hello + 1
End If
Next
我已经尝试了上述方法,但它给了我一个未处理的异常错误。
An unhandled exception of type 'System.InvalidCastException' occurred in WindowsApplication2.exe
Additional information: Unable to cast object of type 'System.Windows.Forms.Label' to type 'System.Windows.Forms.CheckBox'.