PyQt5 QCalendarWidget 设置垂直标题格式
在这篇文章中,我们将看到如何设置QCalendarWidget的垂直标头格式。垂直头是QCalendarWidget的一部分,它告诉ISO周数,下面是垂直头的表现。
基本上有两种格式的垂直标题,一种是ISOWeekNumbers,它的值是1,是默认的格式;另一种是NoVerticalHeader,它的值是0,不显示垂直标题。
为了做到这一点,我们将使用QCalendarWidget对象的setVerticalHeaderFormat方法。
语法: calendar.setVerticalHeaderFormat(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(10, 10, 400, 250)
# setting vertical header format
calendar.setVerticalHeaderFormat(QCalendarWidget.NoVerticalHeader)
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出。