Advertisement

PyQt5:QCalendarWidget日历组件27

阅读量:

研读《PyQt4入门指南 PDF中文版.pdf》过程中整理的相关学习记录

QCalendarWidget类实现了一个按月展示的日历组件,该组件能够使用户通过简洁直观的操作完成日期的选择。

复制代码
 <span style="font-size:12px;">#!/usr/bin/python

    
 # calendar.py
    
  
    
 from PyQt5.QtWidgets import QApplication, QCalendarWidget, QLabel, QVBoxLayout
    
 from PyQt5 import QtWidgets
    
 from PyQt5.QtCore import Qt, QBasicTimer
    
  
    
 class Calendar(QtWidgets.QWidget):
    
     def __init__(self, parent= None):
    
     QtWidgets.QWidget.__init__(self)
    
     
    
     se

全部评论 (0)

还没有任何评论哟~