python
未读
pyside6常用控件 的 完整属性_方法_信号_槽 速查表
1.QPushButton(按钮) 分类 名称 说明 示例代码 属性 text() 获取文字 btn.text() 属性 setText(str) 设置文字 btn.setText("确定") 属性 setEnabled(bool) 启用/禁用 btn.setEnabled(False) 属性 se
python
未读
pyside6常用代码片段
pyside6初始化 from PySide6.QtWidgets import QWidget, QApplication, QPushButton, QHBoxLayout, QGroupBox
import Ui_uis
class MyMainWindow(QWidget):
def _