GetFont()

C++MFC

方法1:        正确

       CFont* font;

LOGFONT lf;
CClientDC dc(this);
font = dc.GetCurrentFont();
if(NULL != font)
font->GetLogFont(&lf);
::ZeroMemory(&lf, sizeof(&lf));

lf.lfHeight = 30;

方法2: 错误

        CFont* font;
LOGFONT lf;
CClientDC dc(this);
font = GetFont();
if(NULL != font)
font->GetLogFont(&lf);
::ZeroMemory(&lf, sizeof(&lf));
lf.lfHeight = 30;


求解释??????????????????????????????????????

????????????????????????????????????????????

??????????????????????????????????????

你可能感兴趣的:(C++)