tabview选择整行
时间: 2023-07-21 16:45:57 浏览: 111
tableview单选行
如果你想要在 QTableView 中实现整行选择,可以使用 `setSelectionBehavior` 函数来设置选择行为,例如:
```cpp
ui->tableView->setSelectionBehavior(QAbstractItemView::SelectRows);
```
这个函数将选择行为设置为选择整行,这样点击表格中任意一格都会选中整行。你也可以使用其他的值来设置选择行为,例如 `QAbstractItemView::SelectColumns` 来选择整列,或 `QAbstractItemView::SelectItems` 来选择单个单元格。这个函数可以在 Qt 中使用 QTableView 或 QTableWidget 组件中。
阅读全文