Sunday, September 28, 2025
HomeLanguagesPyQt5 – Hide push button on click

PyQt5 – Hide push button on click

In this article we will see how to hide the push button. When we design a GUI (Graphical User Interface) we create push button in it which do some task when they are pressed. But some time their is a need to hide the button if task is completed, in order to hide the button we will use hide method.

Syntax : button.hide()
Argument : It takes no argument.
Action performed : It hides the push button

Code :  

Python3




# importing libraries
from PyQt5.QtWidgets import *
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)
 
        # creating a button
        self.button = QPushButton("CLICK", self)
 
        # setting up the geometry
        self.button.setGeometry(200, 150, 200, 40)
 
        # connecting method when button get clicked
        self.button.clicked.connect(self.clickme)
 
        # showing all the widgets
        self.show()
 
    # action method
    def clickme(self):
 
        # hiding the button
        self.button.hide()
        # printing pressed
        print("pressed")
 
# create pyqt5 app
App = QApplication(sys.argv)
 
# create the instance of our Window
window = Window()
 
# start the app
sys.exit(App.exec())


Output : 

When click button is pressed, output will generate and button will get hidden. 

pressed 

 

RELATED ARTICLES

Most Popular

Dominic
32323 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6693 POSTS0 COMMENTS
Nicole Veronica
11857 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11915 POSTS0 COMMENTS
Shaida Kate Naidoo
6807 POSTS0 COMMENTS
Ted Musemwa
7073 POSTS0 COMMENTS
Thapelo Manthata
6763 POSTS0 COMMENTS
Umr Jansen
6768 POSTS0 COMMENTS