Spaces:
Runtime error
Runtime error
File size: 309 Bytes
f0b1638 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from PySide6.QtWidgets import QWidget, QVBoxLayout, QPushButton
class TopWidget(QWidget):
def __init__(self):
super().__init__()
layout = QVBoxLayout()
self.setLayout(layout)
self.upload_button = QPushButton("请上传JCL")
layout.addWidget(self.upload_button)
|