PyQt5 QSpinBox: comprobar si los botones de flecha se eliminan o no

En este artículo veremos cómo podemos verificar si los botones de flecha del cuadro de número se eliminan o no, básicamente hay dos botones en el cuadro de número, uno para incrementar el valor y el segundo para disminuir el valor. Para eliminar los botones usamos el método setButtonSymbols. Para comprobarlo, utilizaremos el método buttonSymbols.

Sintaxis: spin_box.buttonSymbols() 

Argumento: no requiere argumento 

Retorno: Devuelve el objeto QAbstractSpinBox pero su valor correspondiente es 2 si se eliminan los botones

A continuación se muestra la implementación. 

Python3

# 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, 150, 40)
 
        # removing the buttons
        self.spin.setButtonSymbols(QAbstractSpinBox.NoButtons)
 
        # creating label
        label = QLabel(self)
 
        # setting geometry to the label
        label.setGeometry(100, 160, 200, 30)
 
        # getting the button symbol
        symbol = self.spin.buttonSymbols()
 
        # checking if arrow button is removed
        if symbol == 2:
            text ="No Arrow buttons"
 
        else:
            text =" Arrow buttons"
 
        # setting text to the label
        label.setText(text)
 
# create pyqt5 app
App = QApplication(sys.argv)
 
# create the instance of our Window
window = Window()
 
# start the app
sys.exit(App.exec())

Producción :

 

Publicación traducida automáticamente

Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *