Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用 Qt 的应用程序中有多个选项卡,我将它们全部添加到一个QVBoxLayout对象中。如何知道选择了哪一个?
QVBoxLayout
QTabWidget::currentIndex()将返回活动选项卡的索引。
QTabWidget::currentIndex()
我更喜欢ui->QTabWidget->currentWidget() == ui->Tab 如果您重新排列选项卡并且索引更改。
ui->QTabWidget->currentWidget() == ui->Tab