Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
209 views
in Technique[技术] by (71.8m points)

python - How to apply hover and formatting simultaneously to QPushButton?

I'm trying to change background color of QPushButton element when hovered. Also, I need to keep my formatting in the stylesheet, but could not do it together as it does not render in the GUI.

Here is what I want to keep (the START LISTENING button): enter image description here

With the following stylesheet, I can attain changing background-color on hover, but rest of the formatting part does not work:

QPushButton::hover#start_stop_button
{
background-color: rgb(255, 255, 255);
}
border-color:rgb(60, 231, 195);
border-style:outset;color:lightgrey;border-width:2px;border-radius: 12px;padding: 6px;background-color: rgb(50, 50, 100);

This is what I get instead (when not hovered on START LISTENING button): enter image description here

question from:https://stackoverflow.com/questions/65832890/how-to-apply-hover-and-formatting-simultaneously-to-qpushbutton

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...