我正在尝试更改一段QGraphicsView
时间的光标ScrollHandDrag
,但它似乎不起作用。如果我禁用光标,我可以更改光标,ScrollHandDrag
但在它处于活动状态时不这样做,我看不出我可能做错了什么......
波纹管是重现问题的一部分代码:
QApplication app(argc, argv);
QGraphicsScene scene;
QRect rectangle(-8, -4, 100, 100);
QPen pen(Qt::blue, 1, Qt::SolidLine);
scene.addRect(rectangle, pen);
scene.setBackgroundBrush(Qt::white);
QGraphicsView vue(&scene);
vue.setFixedSize(250, 250);
//vue.setDragMode(QGraphicsView::ScrollHandDrag);
vue.setCursor(Qt::CrossCursor);
vue.show();
return app.exec();