Qt中如何设置字体粗体、斜体、下划线?
我想使用 Qt 4.6.2 制作一个类似于简单文本编辑器的程序。
当用户阻止 TextEdit
中的任何文本并单击按钮时,文本将根据按钮变为粗体/斜体/下划线。
我是 Qt 编程的初学者,所以如果可能的话,你能在 Qt 中插入编程代码来做到这一点吗?
I want to make a program that's like a simple text editor using Qt 4.6.2.
When the user block any text in a TextEdit
and click on a button, the text will be bold/italic/underlined depending on the button..
I'm a beginner in Qt Programming, so if Possible, can you insert the programming code in Qt to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
粗体请参见 setFontWeight,setFontItalic 用于斜体和 setFontUnderline 用于下划线。这些方法设置所选文本的相应属性。
See setFontWeight for bold, setFontItalic for italic and setFontUnderline for underline. These methods set the corresponding attribute of the selected text.