Skip to content

Tag Archives: Python-PyQt

PyQt5 is a comprehensive set of Python bindings for Qt v5. It is implemented as more than 35 extension modules and enables Python to be… Read More
While designing any GUI (Graphical User Interface) there is a need to display plain text on screen, in order to do so Label widget is… Read More
While designing an application it could potentially consume a lot of space/memory if care is not taken when closing widgets. The QObject-based classes are designed… Read More
In PyQt5, Qt alignment is used to set the alignment of the widgets. In order to use the Qt alignment methods, we have to import… Read More
The first step in creating desktop applications with PyQt is getting a window to show up on your desktop, in this article, we will see… Read More
A label is a graphical control element which displays text on a form. A label is generally used to identify a nearby text box or… Read More
In this article, we will see how to make different types of curves for different corners. We can make borders to a label using setStyleSheet()… Read More
Unlike setting background images, skins adjust themselves according to the size of Label. In background image, if the image size is large and label size… Read More
In this article, we will see how we can align text of labels in PyQt5 application, we can align text in three different ways which… Read More
While designing any GUI(Graphical User Interface) application we create labels that provide information, but sometimes there might be a case when the label size is… Read More
In GUI applications there is need of displaying information this done using labels in PyQt5, but sometimes there is also a need of changing the… Read More
When we design an application in PyQt5, the main window is used to appear by default the window is opaque, but we can make it… Read More
When we design the GUI (Graphical User Interface) application using PyQt5, there exist the window. A window is a (usually) rectangular portion of the display… Read More
While creating a PyQt5 app the window get opened and in task bar, automatically the app appears and when we close the app it get… Read More
When we create label, by default, they are rectangle in shape, we can use resize() method to change its width and height but still it… Read More