PyQt5 – QCalendarWidget
QCalendarWidget 是一个提供基于月的日历部件的类,允许用户选择日期,这个类属于QWidgets类。日历是一个为社会、宗教、商业或管理目的组织日子的系统。这是通过给时间段命名来实现的,通常是天、周、月和年。在这样的系统中,日期是一个单一的、特定的日子的指定。下面是 QCalendarWidget 的样子。
例子:
一个有QCalendarWidget的窗口,用户可以看到不同的月份,并可以选择任何日期
下面是实现的过程
# 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())