2
我正在使用PyQt4創建應用程序,以便能夠在不從系統加載本地HTML文件的情況下查看內嵌文本HTML標記。 但是,我得到了HTML的字符串格式的一些問題。此代碼僅顯示窗口而不是HTML文本。請幫忙。使用QWebView查看內嵌HTML文本()
# imported all the modules class HtmlView(QtGui.QMainWindow): def __init__(self): QtGui.QMainWindow.__init__(self) ................. # i've skipped the layout definition here ................ # an inline text with html mark-up text = "<p>This is a paragraph</p><div>This is inside div element</div>" self.html = QtWebKit.QWebView() # setting layout self.gridLayout.addWidget(self.html) self.mainLayout.addWidget(self.frame) self.setCentralWidget(self.centralwidget) self.web_page = text url = self.web_page self.html.load(QtCore.QUrl(url)) self.html.show() # executing using if __name__ == "main": skipped this part
並請告訴我怎麼改)元素<p>和<DIV>的QWebView裏面的樣式(。
再次感謝@ekhumoro ..我在GUI編程是新和PyQt4..so不介意,如果我的問題是愚蠢的......您的解決方案運作良好..感謝:) – dragfire