add (增加了main_controller 和 位置设定的点位上移和下移)

This commit is contained in:
2025-09-02 18:26:43 +08:00
parent 17abd13df7
commit 3c9784b362
4 changed files with 690 additions and 57 deletions

8
mi_an_main.py Normal file
View File

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