QMenu设置圆角

QMenu *menu = new QMenu(this);
menu->setWindowFlag(Qt::FramelessWindowHint);        //重要
menu->setAttribute(Qt::WA_TranslucentBackground);    //重要

menu->setStyleSheet(QString("QMenu { border-radius: 4px; }"));

你可能感兴趣的:(QMenu设置圆角)