How can i provide mouse over effect to all the pushbuttons in my mainwindow??
How can i provide mouse over effect to all the pushbuttons in my mainwindow??
use stylesheets:
setStyleSheet(QPushbutton:hover{background-color: red;});
i have already used stylesheet background image fro button. I just want to bounce or zoom the button a little on mouse over
it was just a demonstration how to use the ":hover"-property. you can define anything you want... larger text, other border color, other text color, other margins etc...
I have used the code in my constructor. even if it doesnot work??Qt Code:
ui->pushButton->setStyleSheet("hover{background-color:red};");To copy to clipboard, switch view to plain text mode
athulms (15th September 2011)
Bookmarks