configs.process = int(self.edit_process.text()) AttributeError: 'MainWindow' object has no attribute 'edit_process'
时间: 2024-05-10 20:19:28 浏览: 80
Configs_NeverNever_nubilefilms.com_NuBlLEFlLMS、COm_loli/anom_nub
这个错误提示是因为在你的 `MainWindow` 类中没有名为 `edit_process` 的属性。请检查你的代码,确保你正确地创建了该属性,并且你正在访问正确的对象。你可以在类的构造函数中创建 `edit_process` 属性,例如:
```python
class MainWindow(QtWidgets.QMainWindow):
def __init__(self):
super().__init__()
# 创建一个文本框
self.edit_process = QtWidgets.QLineEdit(self)
self.edit_process.setGeometry(50, 50, 200, 30)
```
在这个例子中,我们在构造函数中创建了一个 `QLineEdit` 对象,并将其赋值给了 `self.edit_process` 属性。你可以根据自己的需要修改属性的类型和参数。然后,在其他方法中,你就可以访问该属性并使用它,例如:
```python
configs.process = int(self.edit_process.text())
```
阅读全文