This repository has been archived on 2024-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mathdeptv2/工具v2/Qt基础框架.py

22 lines
353 B
Python

from PySide6.QtWidgets import QWidget, QApplication, QFileDialog
from Ui_编辑题目信息 import Ui_Form
class MyWindow(QWidget,Ui_Form):
def __init__(self):
super().__init__()
self.setupUi(self)
if __name__ == '__main__':
app = QApplication([])
windows = MyWindow()
windows.show()
app.exec()