Hi guys:
I want to change the background-color of the label when the focus is on it, I used"
Qt Code:
  1. setStyleSheet( "QLabel:focus{ background-color: rgb( 255, 255, 255 ); }" );
To copy to clipboard, switch view to plain text mode 
to implement, Now I want to implement it through modifying the style, Where should I modify? drawComplexControl() ? drawControl() ? or other interfaces ? Thank you for suggestions.