我正在使用Qt。我在通过Qt Creator添加的页面中有一个按钮。它连接到void MyPage::on_startButton_clicked()方法。

我想以编程方式单击此按钮。我尝试了ui->startButton->clicked(),它给出了,



请帮忙。谢谢!

最佳答案

使用 QAbstractButton::animateClick() :

QPushButton* startButton = new QPushButton("Start");
startButton->animateClick();

09-05 13:15