在我的 Qt 项目中,我有一个QPushButton
和一个QLineEdit
实例。我想在按下 QPushButton 时禁用 QLineEdit。
我写了这段代码:
this->btn = new QPushButton(this);
this->txt = new QLineEdit(this);
QObject::connect(this->btn,SIGNAL(clicked(bool)),this->txt,SLOT(setDisabled(bool)));
这是行不通的。你能帮我吗?我的错误是什么?