例如把这些控件的背景颜色改成白色 我有写了一个不过没有调通,请指教 dim olabel as control for each olabel in me.tabcontrol1.tabpages ctype(olabel, label).backcolor = color.white next 但是不能达到预期的效果。。。
foreach page as tabpage inme.tabcontrol1.tabpages
foreach c as control in page.controls
if c.gettype() isgettype(label) then
c.backcolor = color.red
endifnextnext