MFC 中的粗体标签
我想在 MFC(静态文本)中创建同时具有粗体和非粗体文本的标签。像这样的事情:
“例如,我希望我的标签 看起来像 这样”
关于如何做到这一点有什么想法吗?
我知道我可以更改整个标签的字体,并将其设置为粗体或不粗体,但是有没有办法合并多种样式,或者提供一个类似 html 的标签?
I want to create labels in MFC (Static text) that have both bold and non-bold text. Something like this:
"I would like my label to look like this, for example"
Any thoughts of how to do this?
I know that I can change the font of the entire label and have it either bold or not, but is there any way of merging more than one style, or maybe give an html-like label?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用包含适当标记文本的 RichEdit 控件,而不是静态控件。
Instead of a static control, use a RichEdit control containing appropriately marked up text.