PyQt5 QSpinBox – 进行更新
在本文中,我们将看到如果发生任何更改,我们如何更新旋转框,在传统的 GUI(图形用户界面)构建中,每次我们对小部件进行更改时,我们都必须更新小部件,以便用户可以看到新的更新旋转框。例如,在 PyGame 中,当我们进行更改时,我们必须刷新屏幕或更新屏幕以便显示新事件。但是在 PyQt5 中,旋转框会在每次发生任何变化时自动更新它,尽管我们可以调用update
方法来显式地更新它。
注意:除非旋转框更新被禁用或隐藏
为此,我们使用update
方法。
Syntax : spin_box.update()
Argument : It takes no argument
Action performed : It updates the spin box
下面是实现
# 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")
# making updates on spin box
self.spin.update()
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :