上周碰到的问题:画逻辑运算符的按钮,结果画“&”时显示为空。找到Qt assistant: QPushButton::setText(const QString &text) text : QString This property holds the text shown on the button. If the button has no text, the text()
问题:运行后点击QPushButton时,控制台报错,并且点击没有响应点击事件 //信号与槽关联connect(startButton, &QPushButton::click, this, &ThreadDlg::slotStart); //点击报错,控制台打印的错误信息QObject::connect: signal not found in QPushButton 解决方案: