En este artículo veremos cómo podemos establecer el tipo de paso en el cuadro de número, hay dos tipos de tipos de paso, es decir, uno predeterminado que incrementa el valor normalmente y otro es decimal adaptativo. El paso decimal adaptativo significa que el tamaño del paso se ajustará continuamente a una potencia de diez por debajo del valor actual, es decir, si el valor es 900, el siguiente incremento estará desactivado. 10 para un valor igual a 1000, el incremento será de 100. Por defecto está configurado al tipo de paso predeterminado aunque podemos cambiar.
Para ello utilizaremos el setStepType
método
Nota: esta función se introdujo en Qt 5.12. por lo que las versiones inferiores no tienen esta característica.
Sintaxis:
spin_box.setStepType(QAbstractSpinBox.AdaptiveDecimalStepType)
o
spin_box.setStepType(1)Argumento: toma el objeto QAbstractionSpinBox o podemos pasar 1, es decir, su valor como argumento
Retorno : Devuelve Ninguno
A continuación se muestra la implementación.
# importing libraries from PyQt5.QtWidgets import * from PyQt5 import QtCore, QtGui from PyQt5.QtGui import * from PyQt5.QtCore import * from PyQt5.Qt import PYQT_VERSION_STR print("PyQt version:", PYQT_VERSION_STR) 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, 150, 40) # setting range self.spin.setRange(0, 10000) # setting value self.spin.setValue(950) # setting step type self.spin.setStepType(QAbstractSpinBox.AdaptiveDecimalStepType) # creating label label = QLabel(self) # setting geometry to the label label.setGeometry(100, 160, 200, 30) # getting single step size step = self.spin.singleStep() # setting text to the label label.setText("Step Size : " + str(step)) # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec())
Producción :
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA