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;
            }
    */
    }

  • 相关阅读:
    区块链技术的应用场景
    区块链快速了解
    区块链工作汇报部分问题
    区块链Fabric 交易流程
    maven配置settings.xml【阿里云】
    Java常用工具类整理
    程序员职业思考:从大数据到人工智能再到区块链
    Python实现图像信息隐藏
    Python直接控制鼠标键盘
    Mac使用Clion配置OpenGL
  • 原文地址:https://www.cnblogs.com/perock/p/2296893.html
Copyright © 2011-2022 走看看