# | Likes | Tech tags | Title | Creator | Created date |
---|---|---|---|---|---|
1 | 0 |
PyQt5
PyQt
|
2023-07-09 19:57
|
Allows you to render a GUI designed in QT Designer. In this example, renders the following window:
from PyQt5.QtWidgets import QApplication
from PyQt5 import uic
application = QApplication([])
window = uic.loadUi("qt_designer.ui")
window.show()
application.exec()
QtDesigner Python - github.com
Qt Designer standalone version available here:
Qt Designer Download - build-system.fman.io
functions | |
PyQt5.QtCore.QCoreApplication.exec_ |
doc.qt.io |
PyQt5.QtWidgets.QWidget.show |
doc.qt.io |
PyQt5.uic.loadUi |
riverbankcomputing.com |
classes | |
QApplication |
doc.qt.io |
Load the GUI of your program from some file that defines it, usually created by some external GUI designer program.