gpt4 book ai didi

c++ - MFC类CEditView字体大小

转载 作者:行者123 更新时间:2023-12-02 10:34:38 24 4
gpt4 key购买 nike

我使用CEditView创建Visual Studio(MFC)和多个文档。

如何在CEditView中更改字体大小?

enter image description here

最佳答案

这是示例:

CFont* pFont = _ed.GetFont();
LOGFONT LogFont;
pFont->GetLogFont(&LogFont);

CFont* NewFont = new CFont();
// lstrcpy( LogFont.lfFaceName, _T("Times New Roman CE" ));
LogFont.lfHeight = 8;
NewFont->CreateFontIndirect(&LogFont);
_ed.SetFont(NewFont );

关于c++ - MFC类CEditView字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60925582/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com