QTableWidget将项添加到选择中

时间:2016-10-26 09:51:50

标签: c++ qt qt5 qtablewidget

我需要选择几个QTableWidgetItem个对象。我怎么能在我的程序中做到这一点?如果我需要做我自己的模型视图,或者我可以在简单的QTableWidget对象中做到这一点?怎么样?

这是我的代码(不工作)

int col = current->column();
int row = current->row();
int spancols = current->data(TableItem::SpannedCols).toUInt();
for (int ic = col; ic < spancols; ++ic)
{
    for (int ir = row; ir < rowCount() - 1; ++ir)
    {
        QModelIndex index = model()->index(ir, ic);
        selectionModel()->select(index, QItemSelectionModel::Select);
    }
}

0 个答案:

没有答案