add main_ui.py(中交三航主界面)

This commit is contained in:
2025-10-18 18:29:40 +08:00
parent 2c16ef2a7e
commit dc038b0c0d
31 changed files with 7601 additions and 0 deletions

8
main_ui.py Normal file
View File

@ -0,0 +1,8 @@
from PySide6.QtWidgets import QApplication
from controller.main_controller import MainController
if __name__ == "__main__":
app = QApplication([])
controller = MainController()
controller.showMainWindow()
app.exec()