从资源 QSS 文件中 setStyleSheet

发布于 2024-10-14 14:49:19 字数 330 浏览 2 评论 0原文

在我的小部件中,我可以执行类似的操作:

MyWindow::MyWindow(QWidget *parent) :
    QWidget(parent)
{
    ui.setupUi(this);
    setStyleSheet("QWidget { background-color: red }");  // <--- HERE
}

这会将小部件背景设置为红色。

我的资源中有一个 QSS 文件。如何指示我的小部件从那里获取其样式表内容,而不是仅将 QSS 语法作为参数?

In my widget, I can do something like that:

MyWindow::MyWindow(QWidget *parent) :
    QWidget(parent)
{
    ui.setupUi(this);
    setStyleSheet("QWidget { background-color: red }");  // <--- HERE
}

This will set the widget background red.

I have a QSS file in my resources. How do I instruct my widget to take its style sheet content from there, vs just taking the QSS syntax as parameter?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伊面 2024-10-21 14:49:19

作为为每个小部件设置样式表的替代方法,您可以为整个应用程序加载并设置样式表。像这样:

QApplication app( argc, argv );

// Load an application style
QFile styleFile( ":/style.qss" );
styleFile.open( QFile::ReadOnly );

// Apply the loaded stylesheet
QString style( styleFile.readAll() );
app.setStyleSheet( style );

在这种情况下,所有小部件都会自动从给定的样式表中选择它们的样式。

As an alternative to setting a style sheet for each widget, you can just load and set a stylesheet for a whole application. Something like this:

QApplication app( argc, argv );

// Load an application style
QFile styleFile( ":/style.qss" );
styleFile.open( QFile::ReadOnly );

// Apply the loaded stylesheet
QString style( styleFile.readAll() );
app.setStyleSheet( style );

In this case all widgets will pick their styles from the given stylesheet automatically.

心如狂蝶 2024-10-21 14:49:19

明白了:您实际上必须从资源中“读取文件”,将其转换为 QString 并将其提供给 setStyleSheet。例如:

QFile 文件(":/qss/default.qss");
文件.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(file.readAll());
setStyleSheet(styleSheet);

Got it: you actually have to "read the file" from the resources, convert it to a QString and feed it to the setStyleSheet. E.g.:

QFile file(":/qss/default.qss");
file.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(file.readAll());
setStyleSheet(styleSheet);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文