Qt
Stilvorlagen effektiv verwenden
Suche…
Stylesheet eines UI-Widgets festlegen
Sie können das Stylesheet des gewünschten UI-Widgets mit einem beliebigen gültigen CSS einstellen. Im folgenden Beispiel wird die Textfarbe eines QLabels umrahmt.
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
QString style = "color: blue; border: solid black 5px;";
ui->myLabel->setStylesheet(style); //This can use colors RGB, HSL, HEX, etc.
}
MainWindow::~MainWindow()
{
delete ui;
}
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow