From 1f5150eb095127385affa16786eee9f72b4ee10b Mon Sep 17 00:00:00 2001 From: "weiye.wang" Date: Thu, 29 Feb 2024 20:18:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=20Qt=E5=9F=BA=E7=A1=80?= =?UTF-8?q?=E6=A1=86=E6=9E=B6.py=20=E4=BD=9C=E4=B8=BA=E5=8F=82=E8=80=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 工具v2/Qt基础框架.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 工具v2/Qt基础框架.py diff --git a/工具v2/Qt基础框架.py b/工具v2/Qt基础框架.py new file mode 100644 index 00000000..671c9597 --- /dev/null +++ b/工具v2/Qt基础框架.py @@ -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() +