从 QTableWidget 读取选定的项目
如何从 QTableWidget 读取选定的项目?
谢谢
How can read selected items from QTableWidget?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何从 QTableWidget 读取选定的项目?
谢谢
How can read selected items from QTableWidget?
Thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
int QTableWidget::currentRow() const
返回当前项目的行。
int QTableWidget::currentColumn() const
返回当前项目的列。
int QTableWidget::currentRow() const
Returns the row of the current item.
int QTableWidget::currentColumn() const
Returns the column of the current item.
一些选项(还有其他选项):
Some options (there are also others out there too):
使用
selectedItems
函数检索所选项目或selectedIndexes
获取所有选定的单元格,包括空的。Use the
selectedItems
function to retrieve the selected items or theselectedIndexes
to get all selected cells including empty ones.访问 qtablewidget 中的项目的最佳方法是使用函数
QList QTableWidget::selectedRanges () const
the best way to access the items in a qtablewidget is using the function
QList QTableWidget::selectedRanges () const