PyQt5 QSpinbox – 如何启用接受丢弃
在这篇文章中,我们将看到如何在旋转框中启用下拉的接受,我们知道我们可以使用setDragEnabled
方法对旋转框的行编辑对象启用拖动,但是拖动我们不能拖放的文本有什么用它在任何地方。允许接受放置意味着旋转框现在有一个属性来接受放置文本。
为了做到这一点,我们使用带有旋转框的setAcceptDrops
方法。
Syntax : line_edit.setAcceptDrops(True)
Argument : It takes bool as argument
Return: It returns None
注意:此方法仅使accept drop 属性为true,以便接受并显示我们必须将dragEnterEvent
和dropEvent
添加到旋转框对象的文本。
下面是实现
# 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 widgets
def UiComponents(self):
# creating spin box
self.spin = QSpinBox(self)
# setting geometry to spin box
self.spin.setGeometry(100, 100, 250, 40)
# setting prefix to spin
self.spin.setPrefix("Prefix ")
# setting suffix to spin
self.spin.setSuffix(" Suffix")
# allowing accept drops
self.spin.setAcceptDrops(True)
# creating another spin box
another_spin = QSpinBox(self)
# setting drag enabled
another_spin.lineEdit().setDragEnabled(True)
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :