26 lines
714 B
Python
26 lines
714 B
Python
# This Python file uses the following encoding: utf-8
|
|
import sys
|
|
|
|
from PySide6.QtWidgets import QApplication, QMainWindow
|
|
|
|
# Important:
|
|
# You need to run the following command to generate the ui_form.py file
|
|
# pyside6-uic form.ui -o ui_form.py, or
|
|
# pyside2-uic form.ui -o ui_form.py
|
|
from ui_form import Ui_Controller
|
|
from PySide6 import QtCore
|
|
|
|
class MainWindow(QMainWindow):
|
|
def __init__(self, parent=None):
|
|
super().__init__(parent)
|
|
self.setWindowFlags(QtCore.Qt.WindowMinimizeButtonHint)
|
|
self.ui = Ui_Controller()
|
|
self.ui.setupUi(self)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication(sys.argv)
|
|
widget = MainWindow()
|
|
widget.show()
|
|
sys.exit(app.exec())
|