qt tabwidget 获取当前页index值
时间: 2023-09-22 21:07:46 浏览: 171
Qt tabwidget通用首页模板
您可以使用TabWidget的currentIndex()函数来获取当前选中的Tab页的索引值,如下所示:
```
int currentIndex = ui->tabWidget->currentIndex();
```
其中,ui->tabWidget是指您的TabWidget对象的指针。currentIndex()函数会返回一个整数,表示当前选中的Tab页的索引值,从0开始计数。
阅读全文