//字体:
LOGFONT lf;
memset(&lf, 0, sizeof(LOGFONT)); // zero out structure
lf.lfHeight = 24; // request a 12-pixel-height font
strcpy(lf.lfFaceName, "Arial"); // request a face name "Arial"
m_hFont=CreateFontIndirect(&lf); // create the font
SendMessage(hButton,WM_SETFONT,(WPARAM)m_hFont,0);