hbui
2024-07-21 2f1712ca7e51071caded06570457b722566147b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import sys
 
from PySide6.QtWidgets import QApplication, QMainWindow
 
from numint.ui_mainwindow import Ui_MainWindow
 
 
class MainWindow(QMainWindow):
    def __init__(self):
        super(MainWindow, self).__init__()
        self.ui = Ui_MainWindow()
        self.ui.setupUi(self)
 
 
def main():
    app = QApplication(sys.argv)
    window = MainWindow()
    window.show()
 
    sys.exit(app.exec())
 
 
if __name__ == "__main__":
    main()