QTGraphicsScene中的QtGraphicsView大小

时间:2012-10-17 06:34:43

标签: c++ qt user-interface coding-style qt4

我无法让我的QtGraphicsView占据我正在使用的窗口的100%。有没有办法将视图大小设置为占用创建的图形窗口的100%?

QApplication app(argc, argv);

QGraphicsScene * scene = new QGraphicsScene();

int counter = 1000;


scene->setSceneRect(0, 0, counter, counter);//scene size

QGraphicsEllipseItem * item = new QGraphicsEllipseItem(0, scene);

item->setRect(0,0, 1000.0, 1000.0);

QGraphicsView view(scene);

view.setRect(100, 100);
view.setRenderHints(QPainter::Antialiasing);
view.show();

1 个答案:

答案 0 :(得分:1)

QGraphicsView应该有一个名为showFullScreen的方法(插槽),因为它继承了QWidget ,应该做你想做的事。