how to pass data(variable) from QMainWindow to Qthread? I am trying to create a save function that takes user's input but the function itself is in Q ...
how to pass data(variable) from QMainWindow to Qthread? I am trying to create a save function that takes user's input but the function itself is in Q ...
I can't seem to wrap my head around how they work. The the best for placing multiple widgets seems to be QGridLayout but when I add something into a s ...
I'm trying to build an application with PyQT6 that allows users to browse through a list of images with thumbnails and display the selected image in a ...
I get this error when I try to run labelimg on windows Traceback (most recent call last): File "C:\Users\okeon\AppData\Roaming\Python\Python39\site-p ...
that may be an easy Question for many, however i still struggle with acessing Items that i created in QT Designer. I created a simple GUI that shows ...
i have Converted my Ui file to .py now should i load the project by the .py file ? if yes, how to do that Besides after i convert the project to .exe ...
I need the checkboxes to be ticked at startup, charts to be plotted, and the exchange rate to be written, as it was when the application was closed. T ...
I would like to create various objects with associated keyboard shortcuts. The following code works fine. However, it doesn't prevent multiple objects ...
(pyqt5 noob here.) I want to create an overlay that change text location when some conditions are met. I run it under a thread, that I can control fr ...
i want to display two QTreeViews inside one window and i cant figure out why my testing code doesn't show the red widget (future 2nd TreeView). Any id ...
I'm developing a desktop application with pyqt5 and I'm trying to open a new window when a button in the MainWindow's application is clicked. The seco ...
I have a dataframe that's being used in a QTableView model. I'm trying to have the checkboxes filter the dataframe / QTableView model. It basically wo ...
Is there a way to improve Intellisense for PyQt5 in VSCode? It doesn't show any of the enums like QtCore.Qt.AlignLeft, and it says "pyqtProperty" is n ...
i am using PyQt5 to open a browser to get a folder and assign it to a variable folder_path, if i print it inside the function it works: the return ...
I have implemented QUndoStack with QGraphicScene and everything is working like charm with individual QGraphicItem movement/rotation, but when it come ...
New to PyQt. I am currently trying to find a way to pass data from one window's central panel to another central panel. I made an MRE to experiment an ...
I am using pyqt5 to build an application where I have two plain text edit boxes on the main window. I'm making it so when one scrolls the other does ...
I want to create the basic look of my GUI with Qt-Designer, and add the functions via coding afterwards. Maybe there is already the Problem, but let's ...
I want to make my lineEdits turn red if they are empty when I click submit button. After adding something back I want to make my lineEdit turn back to ...
I know there are already lots of threads opened with this topic, I was trying to follow their recommendations, but I still struggle to achieve this. ...