PyQt5 QSpinBox – 清洁文本
在这篇文章中,我们将看到如何清理旋转框的文本,清理文本意味着去除任何数字前的间隔和零,因为我们知道001与1相似,所以清理文本将去除文本中不需要的零。
为了做到这一点,我们使用 cleanText 方法。
语法: spin_box.cleanText()
参数: 它不需要参数
执行的动作: 它将清除旋转盒的文本。
注意: 前缀、后缀、前导或尾部的空白将被排除。
执行步骤:
1.创建一个主窗口
2.创建一个旋转框,设置其范围前缀和后缀
3.创建一个按钮
4.给按钮添加动作
5.在动作方法中调用cleanText方法
下面是实现的过程
# 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 range to the spin box
self.spin.setRange(0, 999999)
# setting prefix to spin
self.spin.setPrefix("Prefix ")
# setting suffix to spin
self.spin.setSuffix(" Suffix")
# creating a push button
push = QPushButton("Clean", self)
# setting geometry to the push button
push.setGeometry(100, 200, 100, 40)
# adding action to the push button
push.clicked.connect(self.push_action)
# method called by the push button
def push_action(self):
# cleaning the text
self.spin.cleanText()
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())