método setToolTip en PyQt5

setToolTip()El método se utiliza para configurar una información sobre herramientas de un widget en la aplicación PyqT5.

Una información sobre herramientas es una sugerencia en una aplicación de escritorio (interfaz gráfica de usuario). La información sobre herramientas aparece con frecuencia cuando se pasa el mouse sobre un widget sin hacer clic en él. A veces, cuando la flecha del mouse se mantiene presionada sobre el botón, muestra cierta información que es un mensaje de información sobre herramientas.

Sintaxis: widget.setToolTip(Mensaje)

Argumento: Toma una string como argumento.

A continuación se muestra la implementación de este método.

# importing the required libraries
from PyQt5.QtGui import * 
from PyQt5.QtWidgets import * 
import sys
  
class Window(QMainWindow):
    def __init__(self):
        super().__init__()
  
        # set the title
        self.setWindowTitle("Tooltip")
  
        # set the geometry
        self.setGeometry(0, 0, 300, 300)
  
        # creating a button widget
        self.widget = QPushButton('Widget', self)
  
        # setting up the tooltip
        self.widget.setToolTip("This is a button widget !")
          
        # show all the widgets
        self.show()
  
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

Producción :
información sobre herramientas-pyqt

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 *