Dynamically changing the font (size) of controls and dialog boxes in VC)

Source: Internet
Author: User

 

// Iconfont
Logfont;
Int size = sizeof (logfont );
Bool isgood = systemparametersinfo (spi_geticontitlelogfont, size, & logfont, 0 );
If (isgood = true)
{
Cfont * F;
F = new cfont;
Const logfont * pfont = new logfont (logfont );
F-> createfontindirectw (pfont );
//: Enumchildwindows (m_hwnd,: setchildfont, (lparam) F );
}

// Other font
Nonclientmetrics NCM = new nonclientmetrics ();
Bool isgood = systemparametersinfo (spi_getnonclientmetrics, sizeof (nonclientmetrics), ref NCM, 0 );
If (isgood = true)
{
Logfont logfont2;
// Logfont2 = NCM. lfntcaptionfont); // captionfont
// Logfont2 = NCM. lfntsmcaptionfont; // captionfont_small
// Logfont2 = NCM. lfntmenufont; // menufont
// Logfont2 = NCM. lfntstatusfont; // statusfont
Logfont2 = NCM. lfntmessagefont; // messagefont

Cfont * F;
F = new cfont;
Const logfont * pfont = new logfont (logfont2 );
F-> createfontindirectw (pfont );
//: Enumchildwindows (m_hwnd,: setchildfont, (lparam) F );

}

The above is to get the system font size, and then call the second method above!
All fonts on the form will change with the system font size!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.