En este artículo, veremos cómo podemos verificar si el valor aparece en el lado derecho del cuadro de número o no, cuando creamos el cuadro de número, el valor está en el lado izquierdo para hacer que el valor en el derecho tenemos que establecer su bandera de alineación a la derecha. Para hacer esto, usaremos el método de alineación.
Sintaxis: spin_box.alignment()
Argumento: no requiere argumento
Retorno: Devuelve el objeto Qt
Pasos para la implementación –
1. Crea un cuadro de giro
2. Establezca su alineación con la ayuda del método setAlignment
3. Crea una etiqueta para mostrar el resultado.
4. Obtenga la alineación con la ayuda del método de alineación
5. Verifique si la alineación es correcta y luego actualice la etiqueta
6. Mostrar que la alineación no es del lado derecho
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 geometry to spin box self.spin.setGeometry(100, 100, 150, 40) # alignment alignment = Qt.AlignRight # setting alignment 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 right if get_alignment == Qt.AlignRight: text =" Right Aligned" else: text ="Not right 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