我创建了一个QTableWidget
,其中包含文件名及其大小。现在我需要从TableWidget
检索文件名,并需要将其存储在File中。任何人都可以帮我解决这个问题吗?是否有任何函数可以从列中检索文本?
答案 0 :(得分:14)
尝试使用方法
QTableWidgetItem* item(int row, int column) const
像这样使用:
int row = 1;
int col = 1;
QTableWidgetItem* theItem = theTableWidget->item(row, col);
使用QTableWidgetItem方法
提取文本QString text () const
像这样使用:
QString theText = theItem->text();