4
4

1 に答える 1

7

あなたの例を試してみましたが、Qt5で動作します

Widget::Widget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Widget)
{
    ui->setupUi(this);

    this->setStyleSheet(
                "QPushButton#evilButton {"
                "background-color: red;"
                "border-style: outset;"
                "border-width: 2px;"
                "border-radius: 10px;"
                "border-color: beige;"
                "font: bold 14px;"
                "min-width: 10em;"
                "padding: 6px; }"
                );
}

ところで、qssをファイルに保存し、そこからスタイルをロードします

于 2013-06-01T21:17:16.197 に答える