📜  PyQt5 QSpinBox – 根据文本调整大小

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

PyQt5 QSpinBox – 根据文本调整大小

在本文中,我们将了解如何根据其中的文本调整旋转框的大小。当我们创建一个旋转框并且它的值增加时,文本的大小也会增加,因为它需要设置旋转框的大小,以便它覆盖整个文本之前它也没有占用额外的空间。文本包括前缀、后缀和长度变为最大值的值。

为了做到这一点,我们使用 adjustSize 方法。

下面是实现

# 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 prefix to spin
        self.spin.setPrefix("Prefix ")
  
        # setting suffix to spin
        self.spin.setSuffix(" Suffix")
  
        # setting range to the spin box
        self.spin.setRange(0, 999999)
  
        # adjusting the size of the spin box
        self.spin.adjustSize()
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :