1
我想通過setBrush使用QBrush來設置5個QGraphicsRectItem的畫筆。但它不起作用。這種行爲很混亂,因爲它在某些情況下起作用。如何在QGraphicsScene中設置QGraphicsRectItem的畫筆
代碼包括我在Qt的創建者創建了*的.ui。我已經添加了一個QGraphiocsView。
QGraphicsScene *scene_;
scene_ = new QGraphicsScene(ui->graphicsView);
ui->graphicsView->setScene(scene_);
scene_->setBackgroundBrush(Qt::red);
for (int i=0; i<5; i++)
{
QBrush tmpBrush;
tmpBrush.setColor(QColor(200-i*15, i*15, 50));
QPen tmpPen;
tmpPen.setColor(Qt::blue); tmpPen.setWidth(2);
QGraphicsRectItem*tmpRect = scene_->addRect(2, 25*i, 100, 20, tmpPen, tmpBrush);
tmpRect->setPen(tmpPen); tmpRect->setBrush(tmpBrush);
}
我在Ubuntu 16.04中用QT 5.7編碼。
謝謝!這很有幫助,代碼現在正確運行 –