qt 显示html代码
时间: 2023-12-07 18:03:12 浏览: 108
QT基于HTML生成WORD文件
在 Qt 中显示 HTML 代码可以使用 QTextEdit 控件,并设置其文本格式为 HTML。
示例代码如下:
```python
from PyQt5.QtWidgets import QApplication, QTextEdit
app = QApplication([])
html = '<h1>Hello World</h1><p>This is some HTML code</p>'
text_edit = QTextEdit()
text_edit.setHtml(html)
text_edit.show()
app.exec_()
```
运行后将会显示一个带有 HTML 内容的 QTextEdit 窗口。
阅读全文