En este artículo veremos cómo podemos verificar si el valor aparece en el centro del cuadro de número o no, cuando creamos el cuadro de número, el valor está en el lado izquierdo para que el valor esté en el centro, debemos establecer su alineación. bandera al centro.
Para ello utilizaremos el alignment
método.
Sintaxis: spin_box.alignment()
Argumento: no requiere argumento
Retorno: Devuelve el objeto Qt
Pasos para la implementación –
1. Cree un cuadro de giro
2. Establezca su alineación con la ayuda del setAlignment
método
3. Cree una etiqueta para mostrar el resultado
4. Obtenga la alineación con la ayuda del alignment
método
5. Verifique si la alineación está centrada y luego actualice la etiqueta
6. Mostrar la alineación es no en el centro mostrar no en el centro
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 * 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) # alignment alignment = Qt.AlignCenter # setting alignment to centre self.spin.setAlignment(alignment) # creating label label = QLabel(self) # setting geometry to the label label.setGeometry(100, 160, 200, 30) # getting alignment get_alignment = self.spin.alignment() # checking if alignment is centre if get_alignment == Qt.AlignCenter: text = "Center Aligned" else: text = "Not center aligned" # setting text to the label label.setText(text) # 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