2012-06-03 97 views
0

我使用此代碼,但graphicsView將顯示最後的命令, 我怎樣才能在一個graphicsView中顯示兩個setScence?我可以在graphicsView上使用2個setScene嗎?

ui->setupUi(this); 
line1= new QGraphicsScene (this); 
line= new QGraphicsScene (this); 

ui->graphicsView->setScene(line); // not show 
ui->graphicsView->setScene(line1); // show 

回答

2

你需要兩個QGraphicsViews。 QGraphicsView一次只能顯示一個場景。我不確定這是否有其他意義。也許你可以看看QLayoutQSplitter,如果你想要兩個場景/視圖並排。

相關問題