Qt tableWidget 空单元格 获取选中行行号

bool focus = tableWidget->isItemSelected(tableWidget->currentItem()); // 判断是否选中一行

Int row1 = tableWidget->currentItem()->row(); // 当前选中行

这种情况下,当点击某一行的空单元格时,返回的是没有选中当前行,当然也就不能获取行号。

当实际情况是确实已经选中了改行的。

此时,可用

int QTableWidget::currentRow () const
Returns the row of the current item. 返回当前条目的行号

 

上一篇:[转]curl的错误代码


下一篇:【转】jmeter 如何将上一个请求的结果作为下一个请求的参数——使用正则提取器