初版V0.0.0

This commit is contained in:
2026-05-13 14:44:05 +08:00
parent a5a9c884b2
commit 9dda1acaf1
5 changed files with 144 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import sys
from PySide6.QtGui import *
from PySide6.QtCore import *
from PySide6.QtWidgets import *
from qt_material import apply_stylesheet
from main_ui import Ui_MainWindow
class MainWindow(QMainWindow,Ui_MainWindow):
def __init__(self):
super().__init__()
self.setupUi(self)
def initUI(self):
self.setWindowIcon(QIcon("main.ico"))
self.setWindowTitle("Model Team Tools")
if __name__ == '__main__':
app = QApplication([])
window = MainWindow()
window.initUI()
window.show()
sys.exit(app.exec())