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
571 views
in Technique[技术] by (71.8m points)

qt - how to change QLabel to QCombobox when clicked

I need a suggestion for making a QLabel to change as an editable comobox when user clicked it . similar like androidians. i am planning to override the QLabel mousPress and show QComboBox while hiding the QLable. is it right ..?

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

Your solution is correct. Another way you could do it is by using just a combo box and setting a stylesheet to it, so that the borders, the background and the arrow is hidden when it's not selected:

QComboBox:!focus{background-color: transparent; border: 0px;}
QComboBox::drop-down:!focus {border-width: 0px;} 

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

...