zoukankan      html  css  js  c++  java
  • EditBox Control and font size

    http://forums.devx.com/showthread.php?t=83993
    I'm very confus Re: EditBox Control and font size, color, etc...


    Hello boris,

    I don't know what to do with all that. Actually I'm working under VC++, and
    I have a dialogBox in which i want to change the font size and color of on
    Edit Box (CEdit) suppose IDC_EDIT1. I don't know how to put all this stuff
    together to obtain what I want.. Can you give me some clue.

    Demo

    "Boris Karadjov" <bbmvp@cpppp.virtualave.net> wrote:
    >To change the font size and face, use CWnd::SetFont (MFC) or WM_SETFONT
    >(Win32 API).
    >To change the color, override OnCtlColor(..., CTLCOLOR_EDIT) in your dialog
    >class to use CDC::SetTextColor (MFC) or handle WM_CTCOLOREDIT message and
    >call ::SetTextColor function (Win32 API).
    >--
    >Boris Karadjov
    >Brainbench MVP for Visual C++
    >http://www.brainbench.com
    >
    >"Demo" <denis@cybercat.qc.ca> wrote in message
    >news:3b32bd09$1@news.devx.com...
    >>
    >> hello everybody,
    >>
    >> I'm looking for a way to change the font size, color, etc... of one

    >editBox
    >> in my dialog windows. I'm pretty sure I can do this, but how????
    >>
    >>
    >> Is somebody can help me...
    >>
    >> Demo

    >
    >


    Reply With Quote
      #2  
    Old 06-22-2001, 02:50 PM
    Boris Karadjov
    Guest
     
    Posts: n/a
    Re: I'm very confus Re: EditBox Control and font size, color, etc...

    OK. Let's assume you are writing a MFC application and the class for the
    dialog containing the edit control you want to set font and text color of is
    called CMyDialog. Using Class Wizard add handlers for WM_INITDIALOG and
    WM_CTLCOLOR messages as follows:

    BOOL CMyDialog::OnInitDialog()
    {
    CDialog::OnInitDialog();

    CFont fnt;
    fnt.CreateFont(14, 0, 0, 0, FW_NORMAL, FALSE, FALSE, FALSE,
    ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY,
    DEFAULT_PITCH, "Comic Sans MS");
    GetDlgItem(IDC_EDIT1)->SetFont(&fnt);
    fnt.Detach();

    return TRUE;
    }

    HBRUSH CMyDialog::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor)
    {
    HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor);

    if (nCtlColor == CTLCOLOR_EDIT && pWnd->GetDlgCtrlID() == IDC_EDIT1)
    pDC->SetTextColor(RGB(128, 0, 128));

    return hbr;
    }

    Hope this makes more sense.
    --
    Boris Karadjov
    Brainbench MVP for Visual C++
    http://www.brainbench.com

    "Demo" <denis@cybercat.qc.ca> wrote in message
    news:3b337f0e$1@news.devx.com...
    >
    > Hello boris,
    >
    > I don't know what to do with all that. Actually I'm working under VC++,

    and
    > I have a dialogBox in which i want to change the font size and color of on
    > Edit Box (CEdit) suppose IDC_EDIT1. I don't know how to put all this stuff
    > together to obtain what I want.. Can you give me some clue.
    >
    > Demo
    >
    > "Boris Karadjov" <bbmvp@cpppp.virtualave.net> wrote:
    > >To change the font size and face, use CWnd::SetFont (MFC) or WM_SETFONT
    > >(Win32 API).
    > >To change the color, override OnCtlColor(..., CTLCOLOR_EDIT) in your

    dialog
    > >class to use CDC::SetTextColor (MFC) or handle WM_CTCOLOREDIT message and
    > >call ::SetTextColor function (Win32 API).
    > >--
    > >Boris Karadjov
    > >Brainbench MVP for Visual C++
    > >http://www.brainbench.com
    > >
    > >"Demo" <denis@cybercat.qc.ca> wrote in message
    > >news:3b32bd09$1@news.devx.com...
    > >>
    > >> hello everybody,
    > >>
    > >> I'm looking for a way to change the font size, color, etc... of one

    > >editBox
    > >> in my dialog windows. I'm pretty sure I can do this, but how????
    > >>
    > >>
    > >> Is somebody can help me...
    > >>
    > >> Demo

    > >
    > >

    >



  • 相关阅读:
    解决:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure(真实有效)
    数据库连接池Druid的介绍,配置分析对比总结
    浅谈mybatis如何半自动化解耦和ORM实现
    IntelliJ Idea14 创建Maven多模块项目,多继承,热部署配置总结(三)
    IntelliJ Idea14 创建Maven多模块项目,多继承,热部署配置总结(二)
    IntelliJ Idea14 创建Maven多模块项目,多继承,热部署配置总结(一)
    IntelliJ IDEA 创建Spring+SpringMVC+mybatis+maven项目
    跨站点请求伪造(CSRF)总结和防御
    移动端网站开发要点-meta设置
    数组去重
  • 原文地址:https://www.cnblogs.com/cy163/p/531830.html
Copyright © 2011-2022 走看看