CStatic fett machen
-
Wie kann ich den Text eines CStatic fett machen?
-
CWnd* wnd = GetDlgItem(IDC_MYSTATIC); LOGFONT lf; wnd->GetFont()->GetLogFont(&lf); lf.lfWeight = FW_BOLD; static CFont myFont; // statt static besser Membervariable nehmen myFont.CreateFontIndirect(&lf); wnd->SetFont(&myFont);
-
danke