QableWidget:如何在特定列中查找值
我需要使用qablewidget检查特定列中是否存在特定值。 在我的例子中,我需要检查第一列ID是否已经存在,如果是,我需要包含行的编号来更新此行,否则我想添加该行。 Qt有没有提供检查栏目或应该检查的解决方案
解决方案
我假设您在第一列中查找值(因此Item(int,int)中的第二个参数为0),表名为MyQTableWidget
int rows = myQTableWidget->rowCount();
bool found = false;
for(int i = 0; i < rows; ++i)
{
if(myQTableWidget->item(i, 0)->text() == "Something")
{
//we have found our value so we can update 'i' row
found = true;
break;
}
}
if(!found)
{
//we didn't find our value, so we can insert row
}
相关文章