Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个数组 square(40) 作为图片框。
我必须将表单中的 40 个图片框分配给这些数组。都有名称,例如 pb1、pb2 等。如何通过循环来做到这一点?还是我必须按照标准方法一次分配一个?
您可以遍历您的表单控件集合并以这种方式分配它们,我会将您的标记属性用作索引。
For Each cntrl As Control In Me.Controls If TypeOf cntrl Is PictureBox Then square(CInt(cntrl.Tag)) = CType(cntrl, PictureBox) End If Next