📜  PyQt5 QCalendarWidget – 设置接受 drop 属性

📅  最后修改于: 2022-05-13 01:55:13.636000             🧑  作者: Mango

PyQt5 QCalendarWidget – 设置接受 drop 属性

在本文中,我们将看到如何设置 QCalendarWidget 的 accept drop 属性。我们知道我们可以使用带有日历对象的setDragEnabled方法启用拖动,但是拖动文本有什么用,我们不能将它拖放到任何地方。允许接受放置意味着日历现在有一个属性来接受其他日历小部件的放置文本。接受 drop 用于设置年份,因为它是将旋转框对象设置为子对象。

下面是实现

Python3
# 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(10, 10, 400, 250)
  
        # accepting drops
        calendar.setAcceptDrops(True)
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())


输出 :