PyQt5 - Access tooltip of view(drop-down) of ComboBox Last Updated : 22 Apr, 2020 Comments Improve Suggest changes Like Article Like Report In this article we will see how we can access the tool tip of the drop down part of the combo box. When we set tool tip to the combo box it only shows for the line edit part, tool tip is not visible for the drop down part i.e its view part. In order to access tool tip to the view part, do the following steps for implementation - 1. Create Combo box 2. Add items to the combo box 3. Get the view object of the combo box 4. Add tool tip to the view object 5. Get the tool tip of the view object and store it in a variable 6. Create a label to show the tool tip Syntax : # getting view part of combo box view = self.combo_box.view() # setting tool tip to view object of the combo box view.setToolTip(tip) # accessing tool tip get_tip = view.toolTip() Below is the implementation - Python3 1== # 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 a combo box widget self.combo_box = QComboBox(self) # setting geometry of combo box self.combo_box.setGeometry(200, 150, 150, 30) # geek list geek_list = ["Sayian", "Super Sayian", "Super Sayian 2", "Super Sayian B"] # making it editable self.combo_box.setEditable(True) # adding list of items to combo box self.combo_box.addItems(geek_list) # tool tip tip = "Drop down tool tip" # getting view part of combo box view = self.combo_box.view() # setting tool tip to view object of the combo box view.setToolTip(tip) # setting tool tip duration to view object view.setToolTipDuration(2000) # getting the tool tip get_tip = view.toolTip() # creating label to show the tool tip duration label = QLabel("Tool Tip : " + get_tip, self) # setting geometry of the label label.setGeometry(200, 100, 300, 30) # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec()) Output : Comment R rakshitarora Follow 0 Improve R rakshitarora Follow 0 Improve Article Tags : Python Python-PyQt Python-gui Python PyQt5-ComboBox Python PyQt5-ComboBox-stylesheet +1 More Explore Python FundamentalsPython Introduction 2 min read Input and Output in Python 4 min read Python Variables 5 min read Python Operators 4 min read Python Keywords 2 min read Python Data Types 8 min read Conditional Statements in Python 3 min read Loops in Python - For, While and Nested Loops 5 min read Python Functions 5 min read Recursion in Python 4 min read Python Lambda Functions 5 min read Python Data StructuresPython String 5 min read Python Lists 4 min read Python Tuples 4 min read Python Dictionary 3 min read Python Sets 6 min read Python Arrays 7 min read List Comprehension in Python 4 min read Advanced PythonPython OOP Concepts 11 min read Python Exception Handling 5 min read File Handling in Python 4 min read Python Database Tutorial 4 min read Python MongoDB Tutorial 2 min read Python MySQL 9 min read Python Packages 10 min read Python Modules 7 min read Python DSA Libraries 15 min read List of Python GUI Library and Packages 3 min read Data Science with PythonNumPy Tutorial - Python Library 3 min read Pandas Tutorial 4 min read Matplotlib Tutorial 5 min read Python Seaborn Tutorial 15+ min read StatsModel Library- Tutorial 4 min read Learning Model Building in Scikit-learn 8 min read TensorFlow Tutorial 2 min read PyTorch Tutorial 6 min read Web Development with PythonFlask Tutorial 8 min read Django Tutorial | Learn Django Framework 7 min read Django ORM - Inserting, Updating & Deleting Data 4 min read Templating With Jinja2 in Flask 6 min read Django Templates 7 min read Python | Build a REST API using Flask 3 min read How to Create a basic API using Django Rest Framework ? 4 min read Python PracticePython Quiz 1 min read Python Coding Practice 1 min read Python Interview Questions and Answers 15+ min read Like