我想将默认图像加载到所有单元格中,但我想加载的图像始终为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));