我做了一个计划 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