如何调整以下内容的“字体” :(已解决)
fontSize 40
BOLD
Italicized
谢谢
以下失败:(现在有效)
CFont *myFont = new CFont();
myFont->CreateFont( 40, 0, 0, 0, FW_HEAVY, true, false,
0, ANSI_CHARSET, OUT_DEFAULT_PRECIS, CLIP_DEFAULT_PRECIS, DEFAULT_QUALITY,
FIXED_PITCH|FF_MODERN, _T("Courier New") );
CEdit *ed1 = new CEdit();
ed1->Create(WS_VISIBLE | WS_BORDER,CRect(200,100,500,140),this,16);
ed1->SetFont(myFont);
最佳答案
只要您的编辑控件仍然存在,请确保不要使用delete myFont
。
关于visual-c++ - 如何更改CEdit的 "FONT"?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9935011/