PyQt5 QCalendarWidget 释放抓取的鼠标输入
在这篇文章中,我们将看到如何解除抓取,即释放QCalendarWidget的鼠标输入。通过抓取鼠标,日历不会受到影响,除了它不会收到任何鼠标事件。setFocus像往常一样移动焦点,但是新的焦点部件只有在releaseMouse被调用后才能收到鼠标事件。我们可以在 grabMouse 方法的帮助下抓住鼠标。
为了做到这一点,我们将使用QCalendarWidget对象的releaseMouse方法。
语法: calendar.releaseMouse()
参数: 它不需要参数
返回: 它返回无参数
下面是实现的过程
# 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)
# grabbing mouse input
self.calendar.grabMouse()
# releasing mouse input
self.calendar.releaseMouse()
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :
鼠标和键盘输入都在工作