chooseColor with winAPI class

// Copyright (C), 2015, CEU Co., Ltd.
// USR Changed by 2015-02-02T13:35:56 Fandy Xie 谢宇帆
// Version       : 1.0
// Description   : 用户选择颜色对话框
// Return        :
static void chooseColor_winAPI(Args _args)
{
    container   ret;
    binary      binary;
    ;
    
    setPrefix("RGB");
    ret = winAPI::chooseColor(infolog.hWnd(), 0,0,0, binary, true);
    info(con2str(ret));
}

chooseColor with winAPI class

你可能感兴趣的:(chooseColor)