Qt 圆角方案
Posted hbrw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt 圆角方案相关的知识,希望对你有一定的参考价值。
重写 paintEvent :
Q_UNUSED(event)
QPainter p(this);
p.setPen(Qt::NoPen);
p.setBrush(QBrush(QColor(0, 0, 0, 180)));
p.setRenderHint(QPainter::Antialiasing);
p.drawRoundedRect(0, 0, width() - 1, height() - 1, 20, 20);
noPen 就不会有边框的黑色点点了,还阔以 ~
另外,子窗口居中显示:
cicle->move(this->width() / 2 - cicle->width() / 2, this->height() / 2 - cicle->height() / 2);
笨办法,行之有效 ~
以上是关于Qt 圆角方案的主要内容,如果未能解决你的问题,请参考以下文章