以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 遍历控件求助 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=75362) |
-- 作者:ljh29206 -- 发布时间:2015/10/6 15:57:00 -- 遍历控件求助 For Each c As Winform.Control In e.Form.Controls output.show(c.text) end if next
提示 text 不是 Winform.Control 的成员
该如何修改,请指教 |
-- 作者:freeants -- 发布时间:2015/10/6 16:04:00 -- c.name |
-- 作者:ljh29206 -- 发布时间:2015/10/6 16:07:00 -- 我要的是 它的 文本 不要名字 该如何搞。
button
有 name 也有 text 属性吧 |
-- 作者:lindong -- 发布时间:2015/10/6 16:11:00 -- For Each c As Winform.Control In e.Form.Controls If Typeof c Is WinForm.button Then output.show(c.name) end if next |
-- 作者:ljh29206 -- 发布时间:2015/10/6 16:19:00 -- ok 好了
得 这么写
e.Form.Controls(c.name).text |