Qt
Använda stilark på ett effektivt sätt
Sök…
Ställa in en UI-widget-formatmall
Du kan ställa in önskad UI-widget-formatmall med valfritt CSS. Exemplet nedan ställer in en QLabels textfärg som en ram runt den.
#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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow