Qt QSS教程 QLineEdit


 1 QLineEdit {
 2     /* 外邊框 */
 3     border:2px solid red;
 4     
 5     /* 倒角 */
 6     border-radius: 10px;
 7     
 8     /*  內邊框:上下和左右的距離*/
 9     padding: 10 8px;
10     
11     /* 背景色 */
12     background: yellow;
13     
14     /* 選中高亮背色 */
15     selection-background-color:blue;
16     min-width:200px;
17     min-height:40px;
18 }
19 
20 /* 密碼模式 */
21 QLineEdit[echoMode="2"] {
22     lineedit-password-character:9679;
23 }
24 
25 /* 當是只讀模式時 */
26 QLineEdit:read-only {
27     background:red;
28 }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM