QSpinBox 设置样式

QSpinBox{
 height:30px;
 width:30px;
}

QSpinBox::up-button
{
 background-image:url(:/images/scroll_up.png);
 height: 15px;
}
QSpinBox::down-button{
    background-image:url(:/images/scroll_down.png);
 height: 15px;
}

 

表 2. 子部件列表
子部件    描述
::down-arrow    combo box或spin box的下拉箭头
::down-button    spin box的向下按钮
::drop-down    combo box的下拉箭头
::indicator    checkbox、radio button或可选择group box的指示器
::item    menu、menu bar或status bar的子项目
::menu-indicator    push button的菜单指示器
::title    group box的标题
::up-arrow    spin box的向上箭头
::up-button    spin box的向上按钮

你可能感兴趣的:(QT4)