如何从QTableWidget获取数据?

时间:2012-01-11 07:29:56

标签: visual-studio-2008 qt4

我创建了一个QTableWidget,其中包含文件名及其大小。现在我需要从TableWidget检索文件名,并需要将其存储在File中。任何人都可以帮我解决这个问题吗?是否有任何函数可以从列中检索文本?

1 个答案:

答案 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();