Ejemplo: cómo cargar un archivo de interfaz de usuario en pyqt5
class Ui(QtWidgets.QMainWindow):
def __init__(self):
super(Ui, self).__init__() # Call the inherited classes __init__ method
uic.loadUi('basic.ui', self) # Load the .ui file
self.show() # Show the GUI
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)