以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  遍历容器中多有的控件  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=179626)

--  作者:cqlwsam
--  发布时间:2022/8/31 16:46:00
--  遍历容器中多有的控件
遍历容器中的所有控件如何写代码?
面板容器(panel1)中有控件:单选框 rad1 和rad2 两个控件,如何写代码遍历面板容器中的两个单选框。谢谢!

    For Each c As WinForm.Control In e.Form.Controls("Panel1")
        If Typeof c Is WinForm.RadioButton Then \'判断控件是否是单选框
            Dim t As WinForm.RadioButton = c \'使用特定类型的变量引用控件
。。。。
我过不了。

--  作者:有点蓝
--  发布时间:2022/8/31 16:52:00
--  
http://www.foxtable.com/webhelp/topics/2414.htm

For Each c As WinForm.Control In e.Form.Controls("Panel1").Children