PyQt5 QCalendarWidget – 获取日期编辑(弹出式)接受延时
在这篇文章中,我们将看到我们如何获得QCalendarWidget的日期编辑接受延迟属性。这个属性持有一个不活动的日期编辑在其内容被接受之前所显示的时间。如果日历小部件的日期编辑被启用,这个属性指定了在最近的用户输入后,日期编辑保持开放的时间(以毫秒为单位)。一旦过了这个时间,日期编辑中指定的日期就会被接受,弹出窗口就会关闭。默认情况下,该延迟被定义为1500毫秒(1.5秒)。
当我们试图用键盘选择时,日期编辑弹出窗口,延迟值越小,弹出窗口就会越快关闭。它可以在setDateEditAcceptDelay方法的帮助下设置。
为了做到这一点,我们将使用QCalendarWidget对象的dateEditAcceptDelay方法。
语法: calendar.dateEditAcceptDelay()
参数: 它不需要参数
返回: 它返回整数
下面是实现的过程
# 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)
# creating a label
label = QLabel(self)
# setting geometry
label.setGeometry(50, 280, 420, 120)
# making it multi line
label.setWordWrap(True)
# getting delay time in pop-up
value = self.calendar.dateEditAcceptDelay()
# setting text to the label
label.setText("Accept Delay : " + str(value))
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出。