1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| # -*- coding: utf-8 -*-
import sys
from PyQt5 import QtWidgets
from programme_ui import Ui_Form
#############################################################################
class Fenetre(QtWidgets.QWidget):
def __init__(self, parent=None):
super(Fenetre, self).__init__(parent)
self.ui = Ui_Form()
self.ui.setupUi(self)
#
# suite
#
#############################################################################
if __name__ == "__main__":
app = QtWidgets.QApplication(sys.argv)
fen = Fenetre()
fen.show()
sys.exit(app.exec_()) |
Partager