-1
我已經創建了一個使用Qt Creator(Windows 7,MinGW)的Qt Widgets應用程序。如何更新Qt Widgets項目中的圖形視圖(Qt Creator)
我添加了一個GraphicsView(名爲graphicsView
)和一個按鈕(名爲pbClick
)。
的on_pbClick_clicked()
功能如下:
void MainWindow::on_pbClick_clicked()
{
QGraphicsScene scene;
//adding some text to the scene
scene.addText("Hello, world!", QFont("Times", 20, QFont::Bold));
ui->graphicsView->setScene(&scene);
ui->graphicsView->show();
}
當我點擊pbClick
按鈕,沒有任何反應graphicsView
內。
我怎樣才能讓「你好,世界!」文本顯示在graphicsView
內。
檢查這個http://stackoverflow.com/questions/24961013/text-in-graphicsview-in-qt – 2014-11-04 05:29:25
@ArunPrasanth要鏈接的回答不同的QN的問題。 – Vinod 2014-11-04 08:32:23