PyQt5 QCalendarWidget 设置水平标题格式
在这篇文章中,我们将看到如何设置QCalendarWidget的水平标头格式。水平标题是QCalendarWidget中显示日子名称的地方,默认显示日子的简称,例如周一显示为Mon,下面是水平标题的表现。
水平标题有很多格式,比如SingleLetterDayNames,它的值是1,这种格式只显示日子名称的第一个字母,ShortDayNames,它是默认格式,它的值是2,这种格式只显示日子名称的缩写。而LongDayNames,它的值是3,这种格式显示整个日期的名称。
为了做到这一点,我们使用QCalendarWidget对象的setHorizontalHeaderFormat方法
语法: calendar.setHorizontalHeaderFormat(format)
参数: 它需要水平头格式作为参数
返回: 它返回无
下面是实现方法
# 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(50, 50, 400, 250)
# setting calendar horizontal header format
calendar.setHorizontalHeaderFormat(QCalendarWidget.LongDayNames)
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出: