以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 如何统一设置TabControl的样式? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=98324) |
-- 作者:rjh4078 -- 发布时间:2017/3/28 10:17:00 -- 如何统一设置TabControl的样式? 我做了一个计划 0.3秒一次 想实现批量设置TabControl的样式 但是代码提示: --------------------------- 错误 --------------------------- 编译错误:“VisualStyle”不是“System.Windows.Forms.Control”的成员。 错误代码:c.basecontrol.VisualStyle = 6 --------------------------- 确定 --------------------------- For Each f As WinForm.Form In Forms For Each c As WinForm.TabControl In f.Children c.basecontrol.VisualStyle = 6 Next Next |
-- 作者:有点色 -- 发布时间:2017/3/28 10:59:00 -- For Each f As WinForm.Form In Forms If f.Opened Then For Each c As object In f.Controls If typeof c Is WinForm.TabControl Then c.basecontrol.VisualStyle = 6 End If Next End If Next |