PyQt5 QCalendarWidget 设置日期编辑(弹出式)接受延迟属性
在这篇文章中,我们将看到我们如何设置/改变QCalendarWidget的日期编辑接受延迟属性。这个属性持有一个不活动的日期编辑在其内容被接受之前所显示的时间。如果日历小部件的日期编辑被启用,这个属性指定了在最近的用户输入后日期编辑保持开放的时间(以毫秒为单位)。一旦过了这个时间,日期编辑中指定的日期就会被接受,弹出窗口就会关闭。默认情况下,该延迟被定义为1500毫秒(1.5秒)。
当我们试图用键盘选择时,日期编辑弹出窗口,延迟值越小,弹出窗口就会越快关闭。
为了做到这一点,我们将使用QCalendarWidget对象的setDateEditAcceptDelay方法。
语法: calendar.setDateEditAcceptDelay(n)
参数: 它需要整数参数
返回: 它返回无
下面是实现方法
# 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, 650, 400)
# calling method
self.UiComponents()
# showing all the widgets
self.show()
# method for components
def UiComponents(self):
# creating a QCalendarWidget object
self.calendar = QCalendarWidget(self)
# setting geometry to the calendar
self.calendar.setGeometry(50, 10, 400, 250)
# setting cursor
self.calendar.setCursor(Qt.PointingHandCursor)
# removing special cursor
self.calendar.unsetCursor()
# setting accept delay value
self.calendar.setDateEditAcceptDelay(2000)
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())