QT QPushButton 通過stylesheet 設定樣式
阿新 • • 發佈:2018-11-17
1.QT QPushButton 通過stylesheet 設定樣式
ui->pushButton->setStyleSheet("QPushButton{background-color:rgba(255,178,0,100%);\ color: white; border-radius: 10px; border: 2px groove gray; border-style: outset;}" // 按鍵本色 "QPushButton:hover{background-color:white; color: black;}" // 滑鼠停放時的色彩 "QPushButton:pressed{background-color:rgb(85, 170, 255); border-style: inset; }" // 滑鼠按下的色彩
2.Qt creator中使用stylesheet方式將按鈕設定成圓角按鈕,程式碼如下:
setStyleSheet("border:2px groove gray;border-radius:10px;padding:2px 4px;");
3. https://blog.csdn.net/caoshangpa/article/details/78549835
4.QT官方例子
http://doc.qt.io/archives/qt-4.8/stylesheet-examples.html