vote up 0 vote down star

I have a button on an MFC dialog. How can I make the text bold?

flag

3 Answers

vote up 2 vote down check

You can create a new CFont and call WM_SETFONT on the button. Something like this:

// note: m_font is a class variable of type CFont
m_font.CreateFont(10, 0, 0, 0, FW_BOLD, 0, 0, 0, 0, 0, 0, 0, 0, "Arial")
GetDlgItem(IDC_BUTTON1)->SendMessage(WM_SETFONT, WPARAM(HFONT(font)), 0);
link|flag
2  
Of course you should do a GetFont() -> GetLogFont() of the button, modify LOGFONT structure's lfWeight property and create a new font based on it. – macbirdie May 7 at 12:42
thanks @macbirdie, exactly what I was about to follow up with – Aidan Ryan May 7 at 12:45
vote up 1 vote down
class CYourDialog : CDialog
{
public:
   virtual BOOL OnInitDialog(); // override

private:
   CButton m_button;
   CFont m_font;
};

BOOL CYourDialog::OnInitDialog()
{
      __supper::OnInitDialog();

      CFont* font = m_button.GetFont();

      LOGFONT logFont;
      font->GetLogFont(&logFont);
      logFont.lfWeight = FW_BOLD;

      m_font.CreateFontIndirect(&logFont);
      m_button.SetFont(&m_font);
}
link|flag
vote up 0 vote down

Thanks for the answer...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.