PyQt5 Create Label & Stylesheets With QLabel

In this PyQt5 article i want to show you how to Create Label & Stylesheets With QLabel In PyQt5. the QLabel widget provides a text or image display. QLabel is used for displaying text or an image.No user interaction functionality is provided.

 

 

What is PyQt5 QLabel ?

In PyQt5 QLabel is widget class that provides display area for text or image. it can be used to display text message, an image or both. QLabel can also be used as hyperlink or tool tip. QLabel is part of the QtWidgets module in PyQt5 and is subclass of the QFrame widget. it has different properties and methods that can be used to customize its appearance and behavior. Some of the common properties include:

text: sets or gets the text displayed by the label
pixmap: sets or gets the image displayed by the label
alignment: sets the alignment of the text or image within the label
wordWrap: sets whether the text should be automatically wrapped to fit within the label
sizeHint: returns the recommended size of the label based on its contents

 

 

 

Also you can read more Python GUI articles in the below links

 

 

 

First we need some imports

 

 

 

After that we are going to create our main Window class that extends from QDialog . and in the constructor of the class we need to initialize some requirements of the window . also we have called our initWindow() method in here.

 

 

 

After that we are going to create our InitWindow() method. we set our window title, window icon and window geometry.

 

 

 

In here we have created QVBoxLayout object with QLabel, and we have added the label to the layout. also we have set the font for the QLabel.

 

 

 

This is used for giving color for our label.

 

 

 

Also every PyQt5 application must create an application object.

 

 

 

Finally, we enter the mainloop of the application. The event handling starts from this point. 

 

 

 

Complete source code for PyQt5 Create Label & Stylesheets With QLabel

 

 

 

Run the complete code and this is the result

PyQt5 Create Label & Stylesheets With QLabel
PyQt5 Create Label & Stylesheets With QLabel

 

 

 

 

Also you can watch the complete video for this article

Subscribe and Get Free Video Courses & Articles in your Email

 

Leave a Comment

Codeloop
Share via
Copy link
Powered by Social Snap
×