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

Qt子控件样式不生效,因为父控件样式设定

时间:2019-11-08 13:57:00      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:sheet   jpg   spec   搜索   border   继承   app   设定   class   

在帮助中搜索qt style sheets

技术图片

 

 找到这句话:

If we want the property to apply only to one specific QLineEdit, we can give it a name using QObject::setObjectName() and use an ID Selector to refer to it:

意思是如果不想子控件继承父控件,就在父控件加#

    if(m_MainWidget.objectName().isEmpty()){
        m_MainWidget.setObjectName("backLineEdit");
    }
    m_MainWidget.setStyleSheet("QWidget#backLineEdit{border-image:url(:/image/background.jpg);}");
m_MainWidget是父控件,先setObjectName一个名,随便起一个,然后#加上这个名字。这样子控件就不会继承父控件的样式了。

Qt子控件样式不生效,因为父控件样式设定

标签:sheet   jpg   spec   搜索   border   继承   app   设定   class   

原文地址:https://www.cnblogs.com/smh2015/p/11819762.html

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