清泛IT社区
标题:
MFC 设置控件字体,颜色,大小,粗体,下划线等
[打印本页]
作者:
清泛网
时间:
2016-04-15 10:38
标题:
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 对象参数值
复制代码
欢迎光临 清泛IT社区 (https://bbs.tsingfun.com/)
Powered by Discuz! X3.3