En este artículo veremos cómo podemos establecer la geometría en el cuadro de número. La geometría es básicamente la posición y el tamaño del cuadro de giro. Establecer la geometría en el cuadro de número puede cambiar su tamaño y su posición.
Para hacer esto, usamos el método setGeometry con el objeto de cuadro de número.
Sintaxis: font_metrics.setGeometry(izquierda, arriba, ancho, alto)
Argumento: Toma cuatro enteros como argumento
Retorno: Devuelve Ninguno
A continuación se muestra la implementación.
Python3
# 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 range to the spin box self.spin.setRange(1, 999999) # setting prefix to spin self.spin.setPrefix("PREFIX ") # setting suffix to spin self.spin.setSuffix(" SUFFIX") # creating a push button push = QPushButton("Press ", self) # setting position push.move(200, 300) # adding action to the push button push.clicked.connect(self.do_action) # left self.left = 20 # top self.top = 20 def do_action(self): # setting geometry to the spin box self.spin.setGeometry(self.left, self.top, 200, 40) # changing position self.left += 10 self.top += 10 # 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