zoukankan      html  css  js  c++  java
  • qt 使用属性设置替换样式,为无setstylesheet接口的的action设置样式

    需要设置样式:
    "QMenu::item:selected[itemColor = false]{color:#E8E8E8;border:0px solid #575757;#background:transparent;}"
    "QMenu::item:selected[itemColor = true]{color:#E8E8E8;border:0px solid #575757;#background:#1c1c1c;}"

    事件触发的时候设置对应的属性显示到指定样式,这样的方式比直接调用qss效率高,但是比较繁琐。
    connect(m_menu, &Qmenu::hovered, [&][QAction *action]){
    if(action == m_exitAction)
    {
       m_menu->style()->unpolish(m_menu);
       m_menu->style()->setProperty("itemColor", true);
       m_menu->style()->polish(m_menu);
    }
    else
    {
      m_menu->style()->unpolish(m_menu);
       m_menu->style()->setProperty("itemColor", false);
       m_menu->style()->polish(m_menu);

    }


    });


    参考:https://forum.qt.io/topic/81644/stylesheet-recomputing-after-property-change

  • 相关阅读:
    Mac + Python3 安装scrapy
    Pyqt4+Eric6+python2.7.13(windows)
    js基础⑥
    python模块之os,sys
    Python模块之random
    Python模块之PIL
    js基础⑤
    js基础④
    js基础③
    centOS目录结构详细版
  • 原文地址:https://www.cnblogs.com/liuruoqian/p/15393670.html
Copyright © 2011-2022 走看看