5
我正在嘗試顯示純色的小正方形。爲QGraphicsView小部件設置純色背景色
我創建了一個的QGraphicsView部件myGraphicsView,並呼籲:
ui->myGraphicsView->setBackgroundBrush(QBrush(Qt::red, Qt::SolidPattern));
但它保持白色。我究竟做錯了什麼?
我正在嘗試顯示純色的小正方形。爲QGraphicsView小部件設置純色背景色
我創建了一個的QGraphicsView部件myGraphicsView,並呼籲:
ui->myGraphicsView->setBackgroundBrush(QBrush(Qt::red, Qt::SolidPattern));
但它保持白色。我究竟做錯了什麼?
您需要的QGraphicsScene繪製任何東西之前設置到的QGraphicsView:
ui->myGraphicsView->setScene(myScene);
肯定,並設置在現場的背景刷即可。 – 2010-08-24 21:34:45