設定 UI 小部件樣式表

你可以使用任何有效的 CSS 設定所需的 UI 小部件的樣式表。下面的示例將 QLabel 的文字顏色設定為圍繞它的邊框。

#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;
}