資源簡介
一些常用Qt空間的Qss樣例,如:
QLineEdit,QTextEdit {/*控件初始化的設置*/
border: 1px solid #32435E;
border-radius: 5px; /*控件邊框的弧度,數值越大,則彎曲得越厲害*/
/* padding: 0 8px; */
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, /*背景*/
stop: 0 #113845,
stop: 1.0 #15A8FF);
selection-background-color: #0A246A;
}
QLineEdit::hover{/*當鼠標經過控件上方時,控件要發生的變化*/
border-color:#5D8B9E; /*外邊框的顏色*/
}
代碼片段和文件信息
評論
共有 條評論