Qt:如何为整个应用程序的 QLineEdit 设置上下文菜单样式表
Qt: How to set context menu stylesheet for whole application's QLineEdit
正如您在下面的屏幕截图中看到的,所选项目的字体颜色是白色作为其背景颜色,这导致我们看不到项目文本,这个问题存在于我应用程序中的所有 QLineEdits,所以我只是想为所有 QLineEdits 的上下文菜单将所选项目的字体颜色设置为黑色,有没有代码更少的快速方法?
只需为您的应用设置css
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setStyleSheet("QLineEdit QMenu::item {color: rgb(0, 0, 255);}");
MainWindow w;
w.show();
return a.exec();
}
如果您只想为所选(活动)项目设置字体颜色,则应更正此代码
a.setStyleSheet("QLineEdit QMenu::item {\ncolor: rgb(0, 0, 255);\n} QLineEdit QMenu::item::selected{ color: rgb(255, 0, 0)}");
正如您在下面的屏幕截图中看到的,所选项目的字体颜色是白色作为其背景颜色,这导致我们看不到项目文本,这个问题存在于我应用程序中的所有 QLineEdits,所以我只是想为所有 QLineEdits 的上下文菜单将所选项目的字体颜色设置为黑色,有没有代码更少的快速方法?
只需为您的应用设置css
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
a.setStyleSheet("QLineEdit QMenu::item {color: rgb(0, 0, 255);}");
MainWindow w;
w.show();
return a.exec();
}
如果您只想为所选(活动)项目设置字体颜色,则应更正此代码
a.setStyleSheet("QLineEdit QMenu::item {\ncolor: rgb(0, 0, 255);\n} QLineEdit QMenu::item::selected{ color: rgb(255, 0, 0)}");