Qt設定全域的widget的stylesheet

來源:互聯網
上載者:User

最近widget都是有焦點和無焦點兩種情況,這時我們只需要它在有焦點時改變樣式,無焦點時不變。

這時候可以通過qApp->setStyleSheet設定全域所有可能用到的widget的樣式。

1 a.setStyleSheet("QPushButton:focus{border: 3px solid red}");

就可以設定按鈕被聚焦時,外邊畫出一個紅框。

但是這裡注意:不能使用兩行qApp->setStyleSheet來設定樣式,這樣下面的一次調用會覆蓋掉上面的一次調用。

1 a.setStyleSheet("QPushButton:focus{border: 3px solid red}");2 a.setStyleSheet("QLineEdit:focus{border: 3px solid red}");

這樣上面第一行的QPushButton的樣式設定就不會生效。

可以採用

1 a.setStyleSheet("QPushButton:focus{border: 3px solid red} QLineEdit:focus{border: 3px solid red}");

這樣兩個widget都會生效。

另外,對於QComboBox,如果需要在被聚焦時和快顯功能表時都繪製紅框,則使用如

1 a.setStyleSheet("QComboBox QAbstractItemView{border: 3px solid red} QComboBox:focus{border: 3px solid red}");

 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.