class Faceshow(QMainWindow, Ui_MainWindow): def __init__(self, parent=None): super(Faceshow, self).__init__(parent) self.setupUi(self) self.main_button.clicked.connect(start) self.main_exit.clicked.connect(self.quit) def quit(self): self.close() class RESUshow()(QWidget,Ui_Form): def __int__(self, parent=None): super(RESUshow, self).__init__(parent) self.setupUi(self) 上述代码怎么改才正确
时间: 2023-06-16 21:03:40 浏览: 142
您的代码存在两个问题:
1. 在 `Faceshow` 类中,`start` 函数没有定义,无法连接到 `main_button` 的 `clicked` 信号上。
2. 在 `RESUshow` 类中,`__int__` 函数应该是 `__init__`。
以下是修改后的代码:
```
class Faceshow(QMainWindow, Ui_MainWindow):
def __init__(self, parent=None):
super(Faceshow, self).__init__(parent)
self.setupUi(self)
self.main_button.clicked.connect(self.start) # 连接到 self.start 函数
self.main_exit.clicked.connect(self.quit)
def start(self):
# 实现按钮点击后的功能
pass
def quit(self):
self.close()
class RESUshow(QWidget, Ui_Form):
def __init__(self, parent=None):
super(RESUshow, self).__init__(parent)
self.setupUi(self)
```
注意,我在 `Faceshow` 类中添加了一个空的 `start` 函数作为示例,您需要把它替换为您实际的功能实现。
阅读全文