Files
FRAISEMOE2-Installer/main.py
2025-07-03 10:18:53 +08:00

12 lines
280 B
Python

from PySide6.QtWidgets import QApplication, QMainWindow ,QPushButton
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
if __name__ == "__main__":
app = QApplication()
window = MainWindow()
window.show()
app.exec()