This commit is contained in:
2023-09-14 03:14:01 +08:00
parent ed1dfd11ea
commit 08e97ab03e
9 changed files with 437 additions and 105 deletions

View File

@ -0,0 +1,9 @@
from PySide6.QtWidgets import QDialog
from .yieldProgress_ui import Ui_YieldProgress
class YieldProgress(Ui_YieldProgress, QDialog):
def __init__(self, parent=None):
super().__init__(parent)
self.setupUi(self)