Qt中槽函数如何获取按钮QPushButton的按钮文本

2024-11-29 07:08:06
推荐回答(2个)
回答1:

ui->pushbutton1->text()可以获得按钮文本

回答2:

qDebug() << ((QPushButton*)sender())->text();