依星源码资源网,依星资源网

 找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 659|回复: 0

MFC CRichEditCtrl实现不同行不同颜色

[复制链接] 主动推送

5300

主题

5347

帖子

6686

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
6686
发表于 2021-9-14 17:08:55 | 显示全部楼层 |阅读模式
MFC CRichEditCtrl实现不同行不同颜色
1.首先在添加在资源视图中添加CRichEditCtrl控件,并关联变量:
111_看图王.web.png

注意将属性Multiline和Read Only设为True:
2.png

2.初始化控件
在BOOL CRichEditTestApp::InitInstance()函数中添加:
  1. ...
  2. if (!AfxInitRichEdit2())
  3. {
  4.     return FALSE;
  5. }
  6. ...
复制代码
3. 设置字体大小颜色
  1. int CRichEditTestDlg::GetNumVisibleLines(CRichEditCtrl* pCtrl)
  2. {
  3.     CRect rect;
  4.     long nFirstChar, nLastChar;
  5.     long nFirstLine, nLastLine;

  6.     // Get client rect of rich edit control
  7.     pCtrl->GetClientRect(rect);

  8.     // Get character index close to upper left corner
  9.     nFirstChar = pCtrl->CharFromPos(CPoint(0, 0));

  10.     // Get character index close to lower right corner
  11.     nLastChar = pCtrl->CharFromPos(CPoint(rect.right, rect.bottom));
  12.     if (nLastChar < 0)
  13.     {
  14.         nLastChar = pCtrl->GetTextLength();
  15.     }

  16.     // Convert to lines
  17.     nFirstLine = pCtrl->LineFromChar(nFirstChar);
  18.     nLastLine = pCtrl->LineFromChar(nLastChar);

  19.     return (nLastLine - nFirstLine);
  20. }

  21. int CRichEditTestDlg::AppendToLogAndScroll(const CString& csMsg, COLORREF color, int iFontSize)
  22. {
  23.     long nVisible = 0;
  24.     long nInsertionPoint = 0;
  25.     CHARFORMAT cf;
  26.     m_richEdit.GetSelectionCharFormat(cf);
  27.     // Initialize character format structure
  28.     cf.cbSize = sizeof(CHARFORMAT);
  29.     //static int iHeight = 1000;
  30.     cf.dwMask |= CFM_BOLD;
  31.     cf.dwEffects |= CFE_BOLD;//设置粗体,取消用cf.dwEffects&=~CFE_BOLD;
  32.     cf.dwEffects &= ~CFE_AUTOCOLOR;
  33.     cf.dwMask |= CFM_COLOR;
  34.     cf.crTextColor = color;
  35.     cf.dwMask |= CFM_SIZE;
  36.     cf.yHeight = iFontSize;//设置高度
  37.     cf.dwMask |= CFM_FACE;
  38.     _tcscpy_s(cf.szFaceName, _T("微软雅黑"));//设置字体
  39.     // Set insertion point to end of text
  40.     nInsertionPoint = m_richEdit.GetWindowTextLength();
  41.     m_richEdit.SetSel(nInsertionPoint, -1);

  42.     // Set the character format
  43.     m_richEdit.SetSelectionCharFormat(cf);

  44.     // Replace selection. Because we have nothing
  45.     // selected, this will simply insert
  46.     // the string at the current caret position.
  47.     m_richEdit.ReplaceSel(csMsg);

  48.     // Get number of currently visible lines or maximum number of visible lines
  49.     // (We must call GetNumVisibleLines() before the first call to LineScroll()!)
  50.     nVisible = GetNumVisibleLines(&m_richEdit);

  51.     // Now this is the fix of CRichEditCtrl's abnormal behaviour when used
  52.     // in an application not based on dialogs. Checking the focus prevents
  53.     // us from scrolling when the CRichEditCtrl does so automatically,
  54.     // even though ES_AUTOxSCROLL style is NOT set.
  55.     if (&m_richEdit != m_richEdit.GetFocus())
  56.     {
  57.         m_richEdit.LineScroll(INT_MAX);
  58.         m_richEdit.LineScroll(1 - nVisible);
  59.     }

  60.     return 0;
  61. }
复制代码
4.使用示例:
  1. void CRichEditTestDlg::OnBnClickedTest()
  2. {
  3.     CString strPerRet;
  4.     strPerRet.Format(_T("红色行\n"));
  5.     AppendToLogAndScroll(strPerRet, RGB(255, 0, 0), 300);

  6.     strPerRet.Format(_T("绿色行\n"));
  7.     AppendToLogAndScroll(strPerRet, RGB(0, 255, 0), 300);

  8.     strPerRet.Format(_T("蓝色行\n"));
  9.     AppendToLogAndScroll(strPerRet, RGB(0, 0, 255), 300);
  10. }
复制代码
5.效果图
3.png



扫码关注微信公众号,及时获取最新资源信息!下载附件优惠VIP会员5折;永久VIP免费
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

免责声明:
1、本站提供的所有资源仅供参考学习使用,版权归原著所有,禁止下载本站资源参与商业和非法行为,请在24小时之内自行删除!
2、本站所有内容均由互联网收集整理、网友上传,并且以计算机技术研究交流为目的,仅供大家参考、学习,请勿任何商业目的与商业用途。
3、若您需要商业运营或用于其他商业活动,请您购买正版授权并合法使用。
4、论坛的所有内容都不保证其准确性,完整性,有效性。阅读本站内容因误导等因素而造成的损失本站不承担连带责任。
5、用户使用本网站必须遵守适用的法律法规,对于用户违法使用本站非法运营而引起的一切责任,由用户自行承担
6、本站所有资源来自互联网转载,版权归原著所有,用户访问和使用本站的条件是必须接受本站“免责声明”,如果不遵守,请勿访问或使用本网站
7、本站使用者因为违反本声明的规定而触犯中华人民共和国法律的,一切后果自己负责,本站不承担任何责任。
8、凡以任何方式登陆本网站或直接、间接使用本网站资料者,视为自愿接受本网站声明的约束。
9、本站以《2013 中华人民共和国计算机软件保护条例》第二章 “软件著作权” 第十七条为原则:为了学习和研究软件内含的设计思想和原理,通过安装、显示、传输或者存储软件等方式使用软件的,可以不经软件著作权人许可,不向其支付报酬。若有学员需要商用本站资源,请务必联系版权方购买正版授权!
10、本网站如无意中侵犯了某个企业或个人的知识产权,请来信【站长信箱312337667@qq.com】告之,本站将立即删除。
郑重声明:
本站所有资源仅供用户本地电脑学习源代码的内含设计思想和原理,禁止任何其他用途!
本站所有资源、教程来自互联网转载,仅供学习交流,不得商业运营资源,不确保资源完整性,图片和资源仅供参考,不提供任何技术服务。
本站资源仅供本地编辑研究学习参考,禁止未经资源商正版授权参与任何商业行为,违法行为!如需商业请购买各资源商正版授权
本站仅收集资源,提供用户自学研究使用,本站不存在私自接受协助用户架设游戏或资源,非法运营资源行为。
 
在线客服
点击这里给我发消息 点击这里给我发消息 点击这里给我发消息
售前咨询热线
312337667

微信扫一扫,私享最新原创实用干货

QQ|免责声明|依星源码资源网 ( 鲁ICP备2021043233号-3 )|网站地图

GMT+8, 2024-4-25 14:56

Powered by Net188.com X3.4

邮箱:312337667@qq.com 客服QQ:312337667(工作时间:9:00~21:00)

快速回复 返回顶部 返回列表