gpt4 book ai didi

c++ - 无法使用 qss 文件设置样式表属性

转载 作者:行者123 更新时间:2023-11-30 05:11:06 25 4
gpt4 key购买 nike

我正在尝试为我的应用程序中的所有 QLineEdits 设置一些样式。以下是代码:

QLineEdit {
border: none;
padding-bottom: 2px;
border-bottom: 1px solid black;
color: #000000;
background-color:rgba(0,0,0,0);
}
QLineEdit:focus{
border: 0px solid white;
border-bottom: 2px solid #2196F3;
color: #000000;
}

当我使用 GUI 输入此样式时,即通过在表单编辑器中为每个单独的 lineEdit 设置样式表选项,它起作用了。

enter image description here

但是,当我尝试使用资源中的 qss 文件添加相同的代码时,它不起作用。我使用以下代码来应用样式表:

#include "mainwindow.h"
#include <QApplication>
#include <QFile>
#include <conio.h>

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
// QFile styleFile( ":/Stylesheets/QLineEdit.qss" );
// styleFile.open( QFile::ReadOnly );
// std::printf("hi0");

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

QFile file(":/Stylesheets/QLineEdit.qss");
file.open(QFile::ReadOnly);
QString styleSheet = QLatin1String(file.readAll());
a.setStyleSheet(styleSheet);

MainWindow w;
w.show();
return a.exec();
}

这可能是什么问题?

编辑:为 QPushButton 添加代码:

QPushButton, QPushButton:focus {
background-color:#2196F3;
border: none;
color: white;
padding: 3px 20px;
}


QPushButton:hover, QPushButton:hover:focus {
background-color: #1976D2;
border-color: #ffffff;
}



QPushButton:pressed,
QPushButton:pressed:focus {
background-color: #388E3C;
border: none;
color: white;
}

QPushButton:disabled {
color: #cccccc;
background-color: #cccccc;
border: none;
}

最佳答案

让我们总结一下讨论的结果。

file.open(QFile::ReadOnly); 替换为 file.open(QFile::ReadOnly | QFile::Text); QFile: :Text 很重要,因为:

The QIODevice::Text flag passed to open() tells Qt to convert Windows-style line terminators ("\r\n") into C++-style terminators ("\n"). By default, QFile assumes binary, i.e. it doesn't perform any conversion on the bytes stored in the file.

此外,在全局设置样式表时,还有一些细节需要考虑:

样式表会影响小部件以及小部件层次结构中位于其下方的所有内容。如果明确地为小部件设置(从代码或使用表单编辑器)小部件的父级不受影响,就好像它是为整个应用程序设置的一样。例如。如果你设置如下: QWidget { background-color: red; } 对于特定的小部件,该小部件及其所有子部件都将具有红色背景。如果您从 qss 文件为整个应用程序设置相同的样式表,则所有小部件都将具有红色背景。因此,应该非常注意小部件之间的继承。使用权selector types那么至关重要。

关于c++ - 无法使用 qss 文件设置样式表属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45278464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com