PyQt5 QSpinBox – 设置字体家族名称
在这篇文章中,我们将看到如何为旋转盒子的字体设置族名。字族名称也可以选择包括一个铸造厂的名称,例如 “Helvetica [Cronyx]”。如果该字族可从一个以上的铸造厂获得,而铸造厂没有被指定,则会选择一个任意的铸造厂。如果没有可用的字库,我们将使用字体匹配算法来设置一个字库。
为了做到这一点,我们用旋转框的QFont对象设置Family方法。
语法: font.setFamily(name)
参数: 它使用字符串作为参数
返回: 它返回无。
下面是实现的过程
# 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 = QFont('Arial')
# setting font family name
font.setFamily("Spin box font_family")
# setting back 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())
输出: