antsite a écrit a écrit :
Tout est dans le sujet !
J'ai créé un pointeur vers mon texte m_texte mais j'arrive pas à trouver dans la doc une fonction genre SetFont qui marche pour mon controle de ma boite de dialogue.
merci
ANT
|
// ------------------------------------------------------------------------
// Set the default font of the text Area
// ------------------------------------------------------------------------
// Initialize a CFont object with the characteristics given in a LOGFONT
// structure.
LOGFONT lf;
memset(&lf, 0, sizeof(LOGFONT)); // clear out structure
lf.lfHeight = 14; // request a 12-pixel-height font
strcpy(lf.lfFaceName, "Courier New" ); // request a face name "Courier New"
HFONT hfont = ::CreateFontIndirect(&lf); // create the font
// Convert the HFONT to CFont*.
CFont* pFont = CFont::FromHandle(hfont);
GetDlgItem(IDC_TEXT)->SetFont ( pFont );