Answers for "pyqt5 to .py"

0

how to convert pyqt5 to python

# To convert pyqt5 file(.ui) to python file(.py)
>> pyuic5 -x file.ui -o file.py
Posted by: Guest on December-27-2020
3

Python PyQt5

# pip install PyQt5==5.15.2
from PyQt5.QtWidgets import QApplication,QMainWindow,QLabel
import sys
app=QApplication(sys.argv)
app.setStyle('Fusion')
app.setApplicationName('PyQt5 App')
win=QMainWindow()
label=QLabel()
label.setText('An App')
win.setCentralWidget(label)
win.show()
sys.exit(app.exec_())
Posted by: Guest on March-05-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language