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

派生自QWidget的控件使用stylesheet

时间:2015-12-30 13:51:34      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:qt stylesheet

void PreviewWnd::paintEvent(QPaintEvent* ev)
{
    //从QWidget派生的窗口,如果要使用stylesheet,必须要重载paintEvent,并在函数中写如下代码
    QStyleOption opt;
    opt.init(this);
    QPainter p(this);
    style()->drawPrimitive(QStyle::PE_Widget, &opt, &p, this);
}

派生自QWidget的控件使用stylesheet

标签:qt stylesheet

原文地址:http://zaneluo.blog.51cto.com/7823750/1729850

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