在Python类中创建按钮时,"self"和"root"是不同的。 "self"是一个特殊的参数,它表示类的实例对象自身。在类的方法中,通过使用"self"关键字,可以访问类的属性和调用其他方法。 ...
(300, 200) # 创建主控件和布局 self.central_widget = QWidget(self) self.layout = QVBoxLayout(self.central_widget) # 创建 QLabel self.label = QLabel("这是一个标签", self) self.layout.addWidget(self.label) # 创建按钮并添加到布局中 self.button1 = QPushButton("按钮 1", self) self....