📜  PyQt5 QSpinBox – 设置样式名称

📅  最后修改于: 2022-05-13 01:54:41.532000             🧑  作者: Mango

PyQt5 QSpinBox – 设置样式名称

在本文中,我们将了解如何设置旋转框文本的样式名称。当开发人员创建自定义样式并想为其命名以供自己使用时使用样式名称,使样式名称更易于理解。

注意:字体匹配时将忽略 style() 和 weight() 等属性,但如果平台的字体引擎支持,之后可能会模拟它们。

为了做到这一点,我们将setStyleName方法与旋转框的 QFont 对象一起使用。

下面是实现

# 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, 999999)
  
        # setting prefix to spin
        self.spin.setPrefix("PREFIX ")
  
        # setting suffix to spin
        self.spin.setSuffix(" SUFFIX")
  
        # getting font of the spin box
        font = self.spin.font()
  
        # setting style Name
        font.setStyleName("Geek")
  
        # reassigning this font to the spin box
        self.spin.setFont(font)
  
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :