如何在QTableWidgets中将图像加载到单元格中

时间:2015-10-21 16:13:41

标签: c++ qt

我想将默认图像加载到所有单元格中,但我想加载的图像始终为null,我不知道为什么。图像和.cpp在同一个地方。

QTableWidgetItem *item = new QTableWidgetItem();
QBrush *brush = new QBrush();
QPixmap pixmap(QString("1.png"));
if (pixmap.isNull())
    std::cout << "isNull" << std::endl;
brush->setTexture(pixmap);
item->setBackground(*brush);
this->tableWidget->setItem(i, j, new QTableWidgetItem(*item));

enter image description here

0 个答案:

没有答案