新增 Qt基础框架.py 作为参考
This commit is contained in:
parent
06a598c2d6
commit
1f5150eb09
|
|
@ -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()
|
||||||
|
|
||||||
Reference in New Issue