PyQt5 QSpinBox – 选择所有文本
在本文中,我们将了解如何选择旋转框的所有文本,选择文本并不意味着打印或仅选择它。当我们使用鼠标选择文本时,选定的文本会突出显示,并且在鼠标右键单击的帮助下,我们可以看到复制选项和其他选项。下面是选定文本和按下右键时的样子。
为了选择文本,我们使用selectAll
方法。
Syntax : spin_box.selectAll()
Argument : It takes no argument
Action performed : Select the text of the spin box
注意:它选择旋转框中的所有文本,除了前缀和后缀。
实施步骤:
1.创建一个旋转框
2.添加后缀和前缀(可选)
3.设置旋转框的范围(增加值)
4. 创建一个标签以显示有关按钮的信息
4. 创建一个按钮并向其添加操作
5.在action里面选择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")
# setting range to spin
self.spin.setRange(0, 99999)
# creating label
self.label = QLabel(self)
# setting geometry
self.label.setGeometry(100, 200, 300, 40)
# setting text to the label
self.label.setText("When push button get pressed value get selected")
# creating push button
button = QPushButton("Press", self)
# adding action to the push button
button.clicked.connect(self.push_method)
# method called by push button
def push_method(self):
# selecting all the text in spin box
self.spin.selectAll()
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
输出 :