This commit is contained in:
2023-09-13 03:40:02 +08:00
commit e84f2bec81
20 changed files with 1205 additions and 0 deletions

11
uiIndex.py Normal file
View File

@ -0,0 +1,11 @@
import sys
from PySide6.QtWidgets import QApplication
from ui.mainWindow import MainWindow
if __name__ == "__main__":
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec())