使用QGraphicsScene显示矩形框
int main(int argc, char *argv[])
{
QApplication app(argc,argv);
QGraphicsScene scene;
scene.setSceneRect(0,0,3000,3000);
for(int i=0;i<32;i++)
{
for(int j=0;j<12;j++)
{
QGraphicsRectItem* item = new QGraphicsRectItem(20+300*i,20+120*j,240,72);
item->setBrush(QColor(79,136,187,255));
scene.addItem(item);
}
}
QGraphicsView view(&scene);
view.setDragMode(QGraphicsView::ScrollHandDrag);
view.resize(600,540);
view.show();
return app.exec();
}