Most voted "pyqt-5" questions
pyqt-5 is version 5 of Pyqt, which is a Python language packer for the Qt library, and is the basis for KDE (desktop environment for Linux).
Learn more…59 questions
Sort by count of
-
-1
votes1
answer94
viewsProblem aligning buttons with image, in a widget, using pyqt5 graphical library
I am trying to create a screen with a background image and two buttons (ok and Cancel) with press/drop effect using the graphical library pyqt5, of the programming language python, however, I have…
-
-1
votes1
answer38
viewsFunction writing values more than once - Pyqt5
Hello I’m using pyqt5 to create the graphical interface of a supposed clothing store (I’m training), I have the fields to receive the data to register each type of clothing, but when clicking the…
-
-1
votes1
answer61
viewsHow to create an animation for a Graphicseffect property in Pyqt5?
I created a Label to make a slideshow and want to create a transition effect fading between one image and another. To do this effect, I want to define an opacity of 1.0 à 0.0 in my Label. So far, I…
-
-2
votes1
answer235
viewsError using Qlabel - Pyqt5 class method
I am trying to create an application that does the following: every time the user clicks on an image that will be inside a Qlabel, it will open a dialog for the user to open another image. It turns…
-
-2
votes1
answer18
viewsHow to remove the background from Qpushbutton?
I’m trying to create a clickable text - like "that" - in Qt Designer. For this, I created a QPushButton and marked the property flat to remove the background button. At first glance, the background…
-
-2
votes1
answer155
viewsPyqt5 and buttons that lock
I made a basic Pyqt5 application with login and registration. The problem is that when I click on any button to perform any action be it, save next or login, Python stops working. I’ve searched…
-
-2
votes1
answer51
viewsPyqt5 - Inheriting information from one class to another. (Python)
I created two windows in Pyqt5, where the first window needs to inherit information from the second, in this example I created: Tela_1: containing a "Qlineedit" for typing and a "Qpushbutton" to…
-
-2
votes1
answer46
viewsPyqt5 - Set an Inputmask on a Qlineedit to type only the "F10" key
I have an app that contains a Qlineedit that when active the user has the option to press the "F10" key and thus open another window. But I’d like to block that Qlineedit for editing, leaving only…
-
-3
votes1
answer71
viewsPyqt5 - Identify who pressed F10 on a Qlineedit
How do I open a function by pressing the F10 key on a Qlineedit? Searching found the function "returnPressed" but only works for the "Enter" class Ui_MainWindow(object): def setupUi(self,…