In this article, we will see how to add image to a window. The basic idea of doing this is first of all loading the… Read More
Tag Archives: Python-PyQt
In this article we will see how we can set and access the description of the label. A label is a graphical control element which… Read More
When we design a PyQt5 application we see an icon on the top left corner, by default it looks like this : In this tutorial,… Read More
In this article, we will see how to set a color to a status bar. By default, there is no color to a status bar… Read More
In this article, we will see how to add border to status bar. By default, there is no border to status bar. Below is the… Read More
PyQt5 supports a window status bar. This is a small bar at the bottom of a window that sometimes appears, it can contain text messages.… Read More
In this article, we will see how to set message to status bar of window. A status bar is a graphical control element which poses… Read More
We can set the size of label using resize() method and size can be adjusted with respect to the content using adjustSize() method. In this… Read More
In PyQt5, when we create more than one label at same position they overlap each other such that the label which was made at last… Read More
We can create label using QLabel() method, and set the content using setText() method. In this article, we will see how to access the content… Read More
In this article, we will see about alignment() method. This method is used to know the type of alignment the label is having. We use… Read More
PyQt5 allows us to set the icon of window using setWindowIcon() method, on the other hand setWindowIconText() method is also present in it which allows… Read More
There are so many options provided by Python to develop GUI application and PyQt5 is one of them. PyQt5 is cross-platform GUI toolkit, a set… Read More
While using PyQt5, there occur a need of removing or clearing labels in order to do so clear() method is used. This method belongs to… Read More
In order to move (changing the position) any widget like buttons or label move() method is used in PyQt5 application. By default, all the widgets… Read More