PyQt5 QSpinBox – 停止键盘输入

PyQt5 QSpinBox – 停止键盘输入

在这篇文章中,我们将看到如何制作一个不能接受键盘输入的旋转盒,当我们创建一个旋转盒时,基本上有两种方法来改变旋转盒的值,一种是使用箭头按钮,另一种是使用键盘。停止转盘的键盘输入意味着用户将不能用键盘在转盘中输入数值,尽管用户可以用箭头按钮进行增量或减量。

为了停止键盘输入,我们使用行编辑对象的setReadOnly方法

语法: line_edit.setReadOnly(True)

参数: 它接受bool作为参数

执行的动作: 它将使行编辑对象只读。

为了做到这一点,我们必须做以下工作:

1.创建一个主窗口

2.创建一个旋转框

3.从旋转盒中获取行编辑对象

4.使行编辑部分成为只读

以下是实现的过程

# 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")

        # getting the line edit
        line = self.spin.lineEdit()

        # making the line edit part read only
        line.setReadOnly(True)


# create pyqt5 app
App = QApplication(sys.argv)

# create the instance of our Window
window = Window()

# start the app
sys.exit(App.exec())

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

PyQt5 计数器控件QSPINBox