无法使用 qss 文件设置样式表属性
Unable to set stylesheet properties using qss file
我正在尝试为我的应用程序中的所有 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 设置样式表选项,它起作用了。
然而,当我尝试使用资源中的 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 | QFile::Text);
替换file.open(QFile::ReadOnly);
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就很关键了
我正在尝试为我的应用程序中的所有 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 设置样式表选项,它起作用了。
然而,当我尝试使用资源中的 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 | QFile::Text);
替换file.open(QFile::ReadOnly);
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就很关键了