In this article we will see how to add icon to a push button. Here, setting icon not like setting an background image, it is similar to the icon of main window. Icon of button appear at the left side and text is on right size. Below is the representation of push button without and with icon.
In order to do this we will use setIcon method.
Syntax : button.setIcon(QIcon(‘logo.png’)) Argument : It takes file name if in same folder else file path Action performed : It sets icon to the button.
Code :
Python3
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import sys
class Window(QMainWindow):
def __init__( self ):
super ().__init__()
self .setWindowTitle("Python ")
self .setGeometry( 100 , 100 , 600 , 400 )
self .UiComponents()
self .show()
def UiComponents( self ):
button = QPushButton("CLICK", self )
button.setGeometry( 200 , 150 , 100 , 30 )
button.clicked.connect( self .clickme)
button.setIcon(QIcon( 'logo.png' ))
def clickme( self ):
print ("pressed")
App = QApplication(sys.argv)
window = Window()
sys.exit(App. exec ())
|
Output : 