新增 Qt基础框架.py 作为参考

This commit is contained in:
weiye.wang 2024-02-29 20:18:24 +08:00
parent 06a598c2d6
commit 1f5150eb09
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
from PySide6.QtWidgets import QWidget, QApplication, QFileDialog
import Ui_寻找空闲题号
class MyWindow(QWidget,Ui_寻找空闲题号.Ui_Form):
def __init__(self):
super().__init__()
self.setupUi(self)
if __name__ == '__main__':
app = QApplication([])
windows = MyWindow()
windows.show()
app.exec()