码迷,mamicode.com
首页 > 其他好文 > 详细

QSplashScreen无法背景透明的解决办法(强制StyleSheet生效)

时间:2016-06-02 20:00:43      阅读:287      评论:0      收藏:0      [点我收藏+]

标签:

setWindowFlags(Qt::WindowStaysOnTopHint | Qt::SplashScreen | Qt::FramelessWindowHint);

setAttribute(Qt::WA_NoBackground, true);
setAttribute(Qt::WA_NoSystemBackground, true);
setAttribute(Qt::WA_TranslucentBackground, true);


解决SplashScreen无法加载Stylesheet
void MySplash::paintEvent(QPaintEvent *e)
{
    //强制StyleSheet生效
    QStyleOption opt;
    opt.init(this);
    QPainter p(this);
    style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);

    return QSplashScreen::paintEvent(e);

};

http://www.qtcn.org/bbs/read-htm-tid-61177.html

QSplashScreen无法背景透明的解决办法(强制StyleSheet生效)

标签:

原文地址:http://www.cnblogs.com/findumars/p/5554070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!