PyQt5 QSpinBox – 编辑完成的信号
在这篇文章中,我们将看到如何使用旋转盒的编辑完成信号,编辑完成是旋转盒在按下回车键时产生的信号。我们知道,当旋钮的值发生变化时,我们可以给旋钮添加动作,但每次值发生变化时都调用一个方法是不需要的,有时只有当值被设置并按下回车键时,即旋钮的编辑完成时,方法才会被调用。
为了做到这一点,我们使用 editingFinished.connec 方法。
语法: spin_box.editingFinished.connect(method_name)
参数: 它将方法名称作为参数。
执行的动作: 每次编辑完成后,它都会调用通过的方法。
以下是实现方法
# 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")
# creating a label
self.label = QLabel("Label ", self)
# setting geometry to the label
self.label.setGeometry(100, 150, 300, 70)
# adding action when editing get finished
self.spin.editingFinished.connect(self.do_action)
# method called after editing finished
def do_action(self):
# getting current value of spin box
current = self.spin.value()
self.label.setText("Editing finished, final value : " + str(current))
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())