PyQt5怎么导入QwebEngineVIEW
时间: 2023-07-30 15:04:45 浏览: 101
在使用 `QWebEngineView` 之前,需要先导入 `QtWebEngineWidgets` 模块。可以使用以下代码导入:
```python
from PyQt5.QtWebEngineWidgets import QWebEngineView
```
然后,就可以像使用其他 PyQt5 控件一样使用 `QWebEngineView` 了。例如:
```python
from PyQt5.QtWidgets import QApplication, QMainWindow
from PyQt5.QtWebEngineWidgets import QWebEngineView
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
# 创建 QWebEngineView 控件
self.browser = QWebEngineView()
# 将 QWebEngineView 控件设置为主窗口的中心部件
self.setCentralWidget(self.browser)
# 加载网页
self.browser.setUrl(QUrl("https://www.google.com"))
if __name__ == '__main__':
app = QApplication([])
window = MainWindow()
window.show()
app.exec_()
```
这样就可以在 PyQt5 中使用 `QWebEngineView` 了。
阅读全文