按钮QPushButton
/* 使用图片方式 */
QPushButton{
background-color:transparent;
border:none;
width:16px;
height:16px;
image:url(image/n.png);
}
QPushButton:hover{
image:url(image/h.png);
}
QPushButton:disabled{
image:url(image/d.png);
}
/* 一般方式 */
QPushButton{
border-radius:2px;
background-color:#4589FF;
border:1px solid #4589FF;
color:white;
width:60px;
height:25px;
font:12px;
}
QPushButton:pressed{
background-color:#0053C8;
}
QPushButton:hover{
border:1px solid lightgray;
}
QPushButton:disabled{
background-color:gray;
border:1px solid lightgray;
}