PyQt5 QSpinBox – 为多个状态的上升按钮添加背景图片

PyQt5 QSpinBox – 为多个状态的上升按钮添加背景图片

在这篇文章中,我们将看到如何为旋转盒的向上按钮设置不同状态下的背景图片。旋转框有两个孩子,一个是行编辑,另一个是向上和向下按钮。上升按钮用于增加旋转框的值,基本上有三种状态,一种是正常状态,第二种是悬停状态,即光标在上升按钮上时,第三种是按下的状态。

为了做到这一点,我们必须改变与旋转盒相关的样式表,下面是样式表的代码

QSpinBox::up-button
{
background-image : url(image1.png);
}
QSpinBox::up-button:hover
{
background-image : url(image2.png);
}
QSpinBox::up-button:pressed
{
background-image : url(image3.png);
}

这将为每个状态的向上按钮添加三个不同的背景图片,还有一些额外的状态,如anti-hover(!hover)和anti-pressed(!pressed)这些分别是与hover和pressed状态相反。

下面是实现方法

# importing libraries
from PyQt5.QtWidgets import * 
from PyQt5 import QtCore, QtGui
from PyQt5.QtGui import * 
from PyQt5.QtCore import * 
import sys
  
  
class Window(QMainWindow):
  
    def __init__(self):
        super().__init__()
  
        # setting title
        self.setWindowTitle("Python ")
  
        # setting geometry
        self.setGeometry(100, 100, 600, 400)
  
        # calling method
        self.UiComponents()
  
        # showing all the widgets
        self.show()
  
        # method for widgets
    def UiComponents(self):
        # creating spin box
        self.spin = QSpinBox(self)
  
        # setting geometry to spin box
        self.spin.setGeometry(100, 100, 250, 40)
  
        # setting range to the spin box
        self.spin.setRange(0, 9)
  
        # setting prefix to spin
        self.spin.setPrefix("PREFIX ")
  
        # setting suffix to spin
        self.spin.setSuffix(" SUFFIX")
  
        # setting style sheet
        # adding background image to up button
        # adding background image to up button
        # for hover and pressed state
        self.spin.setStyleSheet("QSpinBox::up-button"
                                "{"
                                "background-image : url(image.png);"
                                "}"
                                "QSpinBox::up-button:hover"
                                "{"
                                "background-image : url(skin.png);"
                                "}"
                                "QSpinBox::up-button:pressed"
                                "{"
                                "background-image : url(logo.png);"
                                "}"
                                )
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

PyQt5 计数器控件QSPINBox