PyQt5基础学习-QWebEngineView().setHtml(设置内置的Html)

2022/2/6 6:14:05

本文主要是介绍PyQt5基础学习-QWebEngineView().setHtml(设置内置的Html),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

可以直接将html写在python里面做显示

"""
加载内部的HTML
"""
import os

from PyQt5.QtWidgets import *
from PyQt5.QtCore import QTimer, QDateTime
from PyQt5.QtGui import *
from PyQt5.QtCore import *
from PyQt5.QtWebEngineWidgets import *
import sys

class WebEngineView(QMainWindow):

    def __init__(self):
        super(WebEngineView, self).__init__()
        self.setWindowTitle("装载本地web页面")
        self.setGeometry(5, 30, 1355, 730)

        url = os.getcwd() + os.path.sep + "HTML/test.html"
        self.browser = QWebEngineView()
        self.browser.setHtml(
            """
            <!DOCTYPE html>
            <html lang="en">
            <head>
                <meta charset="UTF-8">
                <title>测试页面</title>
            </head>
            <body>
            <h1>Hello PyQt5</h1>
            <h2>Hello PyQt5</h2>
            <h3>Hello PyQt5</h3>
            <h4>Hello PyQt5</h4>
            </body>
            </html>
            """
        )
        self.setCentralWidget(self.browser)

if __name__ == "__main__":
    app = QApplication(sys.argv)
    main = WebEngineView()
    main.show()

    sys.exit(app.exec_())

 



这篇关于PyQt5基础学习-QWebEngineView().setHtml(设置内置的Html)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程