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.
有什么方法可以读取QTableView用户选择了 Qt 小部件的哪一行?跟QModelIndex上课有关系吗?
QTableView
QModelIndex
是的,您可以使用QTableView::selectionModel()(从 继承的函数QAbstractItemView)返回一个QItemSelectionModel. 然后你可以调用QItemSelectionModel::selectedIndexes(),它会返回一个QModelIndexes 列表。
QTableView::selectionModel()
QAbstractItemView
QItemSelectionModel
QItemSelectionModel::selectedIndexes()
供参考,请参阅QAbstractItemView::selectionModel()。
QAbstractItemView::selectionModel()