📜  PyQt5 – QCalendarWidget

📅  最后修改于: 2022-05-13 01:55:22.088000             🧑  作者: Mango

PyQt5 – QCalendarWidget

QCalendarWidget是提供基于月度的日历小部件允许用户选择日期的类,该类属于 QWidgets 类。日历是为社会、宗教、商业或行政目的组织日子的系统。这是通过给时间段命名来完成的,通常是几天、几周、几个月和几年。日期是在这样的系统中指定一个特定的日期。下面是QCalendarWidget 的样子。

例子 :
具有 QCalendarWidget 的窗口和用户可以看到各个月份并可以选择任何日期
下面是实现

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(50, 50, 400, 250)
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())


输出 :