QPushButton 通过stylesheet 设置样式

通过QPushButton 的 stylesheet 设置按钮样式:

QPushButton{
background-image:url(./res/common/main_reduction.png);
background-repeat:no-repeat;
border:none;
}
QPushButton:hover{
background-color:#CCCCCC
}
QPushButton:pressed{
background-color:#888888
}

你可能感兴趣的:(QT)