标签: python qt4 pyqt4
假设我在pyqt4和QTableWidget对象中有QPoint。如何获取表格中与QPoint对象中的坐标对应的行?
QTableWidget
QPoint
答案 0 :(得分:2)
使用QTableView::rowAt功能。
row = table.rowAt(point.y())