qt半透明菜单

  • Post author:
  • Post category:qt
  • Post comments:0评论

qt菜单半透明

QMenu#toptoolbarmenu {
    padding: 10px 0;
    border-radius: 15px;
    background-color: rgba(38, 40, 42, 0.7);
}
QMenu#toptoolbarmenu::separator {
    height: 2px;
    margin: 6px 0;
    background-color: rgba(255, 255, 255, 1);
}
QMenu#toptoolbarmenu::icon {
    padding: 0 0 0 10px;
}
QMenu#toptoolbarmenu::item {
    color: white;
    padding: 3px 10px;
    font-weight: bold;
    background-color: transparent;
}
QMenu#toptoolbarmenu::item:hover,
QMenu#toptoolbarmenu::item:pressed,
QMenu#toptoolbarmenu::item:selected {
    color: rgb(95, 174, 200);
    border-radius: 15px;
}
QMenu#toptoolbarmenu::item QLabel {
    color: rgb(145, 145, 145);
    font-weight: bold;
    padding-left: 7px;
    margin-bottom: 5px;
    background-color: transparent;
}

main函数里加载qss

// qss
QString szStyle;
std::string qss = "my.qss";
QFile styleFile(qss.string().c_str());
if (!styleFile.open(QIODevice::ReadOnly | QIODevice::Text))
{
    printf("not open qss(%s)!\n", qss.string().c_str());
}
else
{
    szStyle = QString(styleFile.readAll());
    styleFile.close();
}
QApplication a(argc, argv);
a.setStyleSheet(szStyle);

对话框内构造menu

QMenu menu_(this);
menu_.setObjectName("toptoolbarmenu");
// Qt::NoDropShadowWindowHint 去掉阴影
// Qt::FramelessWindowHint 无边框
menu_.setWindowFlags(impl->menu_.windowFlags() | Qt::FramelessWindowHint | Qt::NoDropShadowWindowHint);
menu_.setAttribute(Qt::WA_TranslucentBackground);

效果

文章作者: 张拓
文章链接: http://www.xssl.online/qt%e5%8d%8a%e9%80%8f%e6%98%8e%e8%8f%9c%e5%8d%95/
版权声明: 本博客所有文章除特别声明外,均采用CC BY-NC-SA 4.0 许可协议。转载请注明来自 张拓的博客
浏览次数: 518

张拓

陕西西安蓝田张拓QQ1070410059。一生所求不过“心安”二字。 然,尘世多纷扰。

发表回复