Foxtable(狐表)用户栏目专家坐堂 → 添加后还没有变化,请看图:


  共有1432人关注过本帖树形打印复制链接

主题:添加后还没有变化,请看图:

帅哥哟,离线,有人找我吗?
JSXSHW585
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:72 积分:758 威望:0 精华:0 注册:2017/6/4 19:40:00
添加后还没有变化,请看图:  发帖心情 Post By:2017/9/1 16:40:00 [只看该作者]



Dim obj = CType(BaseMainForm,C1Ribbon.C1RibbonForm).Ribbon
obj.Tabs("Common").ForeColorOuter = color.blue
obj.Tabs("Common").ForeColorInner = color.blue
For Each g As object In obj.Tabs("Common").groups
    g.ForeColorOuter = color.red
    g.ForeColorInner = color.red
Next

此主题相关图片如下:无标题.png
按此在新窗口浏览图片


 回到顶部
帅哥哟,离线,有人找我吗?
有点甜
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:版主 帖子:85326 积分:427815 威望:0 精华:5 注册:2012/10/18 22:13:00
  发帖心情 Post By:2017/9/1 17:31:00 [只看该作者]

主菜单->selectTab事件

 

Dim obj = CType(BaseMainForm,C1Ribbon.C1RibbonForm).Ribbon
Dim c1 As color
Dim c2 As color
For Each r As object In obj.tabs
    If r.name = e.sender.name Then
        c1 = color.blue
        c2 = color.red
    Else
        c1 = obj.forecolorouter
        c2 = obj.forecolorouter
    End If
    r.ForeColorOuter = c1
    r.ForeColorInner = c1
    For Each g As object In r.groups
        g.ForeColorOuter = c2
        g.ForeColorInner = c2
    Next
Next


 回到顶部