流云の剑舞秋风

吾生也有涯 而知也无涯

博客园 首页 新随笔 联系 订阅 管理
CColorDialog cdlg;
 char *r,*g,*b;
 r=new char;
 g=new char;
 b=new char;
 CString str;
 if(cdlg.DoModal()==IDOK)
 {
  COLORREF cSel=cdlg.GetColor();
  itoa(GetRValue(cSel),r,sizeof(r));
  itoa(GetGValue(cSel),g,sizeof(g));
  itoa(GetBValue(cSel),b,sizeof(b));
  str=(CString)r+";"+(CString)g+";"+(CString)b;
  AfxMessageBox(str);
 }
posted on 2005-05-16 12:49  流云  阅读(683)  评论(0编辑  收藏  举报