En este artículo, veremos sobre el alignment()
método. Este método se utiliza para saber el tipo de alineación que está teniendo la etiqueta. Usamos setAlignment()
el método para establecer la alineación, el alignment()
método devuelve el objeto Qt.Alignment que es el argumento del setAlignment()
método.
Sintaxis: etiqueta.alineación()
Argumento: No requiere argumento.
Return : Devuelve el objeto Qt.Alignment
Código:
# importing the required libraries from PyQt5.QtCore import * from PyQt5.QtGui import * from PyQt5.QtWidgets import * import sys class Window(QMainWindow): def __init__(self): super().__init__() # set the title self.setWindowTitle("Python") # setting geometry self.setGeometry(100, 100, 600, 400) # creating a label widget self.label_1 = QLabel("old label ", self) # setting up the border self.label_1.setStyleSheet("border :3px solid black;") # setting the alignment of the label self.label_1.setAlignment(Qt.AlignRight) # getting he alignment of the label align = self.label_1.alignment() # printing the align of label print(align) # resizing the label self.label_1.resize(150, 40) # moving the label self.label_1.move(100, 100) # creating a new label widget self.label_2 = QLabel("new Label ", self) # setting up the border self.label_2.setStyleSheet("border :3px solid black;") # moving the label self.label_2.move(200, 200) # resizing the label self.label_2.resize(150, 40) # setting the alignment using label_1 alignment self.label_2.setAlignment(align) # show all the widgets self.show() # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec())
Producción :
PyQt5.QtCore.Qt.Alignment object at 0x0000021C0076E828
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA