PyQt5 QSpinBox – 选择所有文本
在这篇文章中,我们将看到如何选择旋转框中的所有文本,选择文本并不意味着打印或获取只是选择它。当我们用鼠标选择文本时,选中的文本会被高亮显示,在鼠标右键的帮助下,我们可以看到复制和其他选项。下面是选定的文本和按下右键时的样子。
为了选择文本,我们使用selectAll方法。
语法: spin_box.selectAll()
参数: 它不需要参数
执行的动作: 选择旋转框中的文本
注意: 除了前缀和后缀之外,它将选择旋转框中的所有文本。
实施步骤:
1.创建一个旋钮箱
2.添加后缀和前缀(可选)
3.设置旋转框的范围(增加数值)
4.创建一个标签,显示有关按钮的信息
4.创建一个按钮并为其添加动作
5.在动作中选择旋转框的文本
以下是实现方法
# 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())