MFC 设置控件字体,颜色,大小,粗体,下划线等

清泛原创
参考代码:
CFont *f = new CFont; 
f->CreateFont(16, // nHeight 
                0, // nWidth 
                0, // nEscapement 
                0, // nOrientation 
                FW_BOLD, // nWeight 
                TRUE, // bItalic 
                TRUE, // bUnderline 
                0, // cStrikeOut 
                ANSI_CHARSET, // nCharSet 
                OUT_DEFAULT_PRECIS, // nOutPrecision 
                CLIP_DEFAULT_PRECIS, // nClipPrecision 
                DEFAULT_QUALITY, // nQuality 
                DEFAULT_PITCH | FF_SWISS, // nPitchAndFamily 
                _T("Arial")); // lpszFac 
                                
CEdit *pCombox= (CEdit *)GetDlgItem(IDC_EDIT1);
pCombox->SetFont(f);        //具体设置f 对象参数值

MFC 控件 设置

分享到:
评论加载中,请稍后...
创APP如搭积木 - 创意无限,梦想即时!
回到顶部