需求:模拟进入软件鼠标点击listwidget
正常按钮是直接pushbutton->clicked() 就可以了
但对于listwidget需要设置当前行,获取当前索引才可以
ui->listWidget->setCurrentRow(0);QModelIndex test = ui->listWidget->currentIndex();qDebug() << "test" << test;ui->listWidget->clicked(test);
正常按钮是直接pushbutton->clicked() 就可以了
但对于listwidget需要设置当前行,获取当前索引才可以
ui->listWidget->setCurrentRow(0);QModelIndex test = ui->listWidget->currentIndex();qDebug() << "test" << test;ui->listWidget->clicked(test);