此代码在 Windows 下以蓝色绘制 QRubberBand,但在 MacOs 下不起作用。我想知道为什么?
QRubberBand *rubberBand = new QRubberBand(QRubberBand::Rectangle, this->imageLabel);
rubberBand->setGeometry(rec);
QPalette palette;
palette.setBrush(QPalette::Highlight, QBrush(Qt::darkBlue));
rubberBand->setPalette(palette);