码迷,mamicode.com
首页 > 其他好文 > 详细

VC设置字体

时间:2015-03-08 18:51:30      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

方法1:

//设置字体
CFont* pFont = GetDlgItem(IDC_ConnInfo)->GetFont();
LOGFONT LogFont;
pFont->GetLogFont(&LogFont);
LogFont.lfHeight = 26;				//设置字体大小
LogFont.lfWeight = FW_NORMAL;		//设置字体粗细
LogFont.lfItalic = FALSE;			//是否斜体
LogFont.lfUnderline = FALSE;		//是否下划线
LogFont.lfStrikeOut = FALSE;		//是否删除线
LogFont.lfQuality = PROOF_QUALITY;
strcpy_s(LogFont.lfFaceName, 32, "微软雅黑");  //设置字体
pFont->Detach();
pFont->CreateFontIndirect(&LogFont);
GetDlgItem(IDC_ConnInfo)->SetFont(pFont);
pFont->Detach();

//显示信息
CString sInfo = "正在连接设备, 请稍等...";
GetDlgItem(IDC_ConnInfo)->SetWindowText(sInfo);


VC设置字体

标签:

原文地址:http://blog.csdn.net/jiangqin115/article/details/44134763

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!