QtCore.QObject.connect(self.btnSelectFile, AttributeError: type object 'QObject' has no attribute 'connect'
时间: 2023-07-11 14:28:45 浏览: 199
通过qtmtypes方式配置qObject对象导出
这个错误提示是因为你没有正确导入 `QObject` 类。请确认你在代码的开头是否有包含以下语句:
```python
from PyQt5 import QtCore
```
如果没有,请添加这行代码来导入 `QtCore` 模块,确保你的程序中可以使用 `QObject` 类和其他常用的 Qt 类。
阅读全文