zoukankan      html  css  js  c++  java
  • SysSetupFormRun 用不同颜色区分不同公司账套

    public void run()
    {
        super();

        this.design().colorScheme(2);
        this.design().backgroundColor(winapi::RGB2int(255, 0, 255)); // CRP
    /*
        switch (curEXT())
            {
            case '011' :
                this.design().backgroundColor(winapi::RGB2int(240,240,240));
                break;
            case '020' :
                this.design().backgroundColor(winapi::RGB2int(0,128,0));
                break;
            case '031' :
                this.design().backgroundColor(winapi::RGB2int(0,64,255));
                break;
            case '015' :
                this.design().backgroundColor(winapi::RGB2int(64,64,255));
                break;
            case '016' :
                this.design().backgroundColor(winapi::RGB2int(64,0,255));
                break;
            case '017' :
                this.design().backgroundColor(winapi::RGB2int(0,64,64));
                break;
            case '040' :
                this.design().backgroundColor(winapi::RGB2int(0,0,128));
                break;
            case '307' :
                this.design().backgroundColor(winapi::RGB2int(0,128,255));
                break;
            case '308' :
                this.design().backgroundColor(winapi::RGB2int(255,128,255));
                break;
            default :
                this.design().backgroundColor(winapi::RGB2int(212,208,200));
                break;
            }
    */
    }

  • 相关阅读:
    GhostNet: More Features from Cheap Operations
    Distribution-Aware Coordinate Representation for Human Pose Estimation
    如何从零开始学习自动化
    selenium---博客园登录
    selenium---屏幕截图
    selenium---web页面定位toast
    selenium---JS修改属性处理日历控件
    selenium---cookie处理
    selenium---处理SSL证书错误问题
    selenium---JS处理滚动条
  • 原文地址:https://www.cnblogs.com/perock/p/2296893.html
Copyright © 2011-2022 走看看