En este artículo, veremos cómo podemos obtener el formato de encabezado horizontal del QCalendarWidget. El encabezado horizontal es el lugar en QCalendarWidget que muestra el nombre del día de manera predeterminada, se muestra la forma abreviada de los días, por ejemplo, el lunes se muestra como lunes. De forma predeterminada, ShortDayNames es el formato del encabezado horizontal, aunque podemos cambiarlo con la ayuda del método setHorizontalHeaderFormat.
Hay muchos formatos disponibles para el encabezado horizontal como SingleLetterDayNames, su valor es 1 y este formato muestra solo la primera letra del nombre del día, ShortDayNames, es el formato predeterminado, su valor es 2 y este formato muestra solo la forma abreviada de el nombre de los días. Y LongDayNames su valor es 3 y este formato muestra el nombre completo de los días.
Para hacer esto, usamos el método horizontalHeaderFormat con el objeto QCalendarWidget
Sintaxis: calendar.horizontalHeaderFormat()
Argumento: no toma ningún argumento
Retorno: devuelve el objeto de formato de encabezado horizontal pero cuando se imprime muestra el valor asociado con ellos
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 components def UiComponents(self): # creating a QCalendarWidget object calendar = QCalendarWidget(self) # setting geometry to the calendar calendar.setGeometry(10, 10, 400, 250) # setting calendar horizontal header format calendar.setHorizontalHeaderFormat(QCalendarWidget.LongDayNames) # creating a label label = QLabel(self) # setting geometry to the label label.setGeometry(100, 300, 250, 60) # making label multi line label.setWordWrap(True) # getting the horizontal header format value = calendar.horizontalHeaderFormat() # setting text to the label label.setText("Horizontal Header format value : " + str(value)) # 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