Most voted "pyside" questions
Pyside is a cross-platform wrapper of the Python language for the Qt library.
Learn more…10 questions
Sort by count of
-
2
votes1
answer51
viewsQcombobox.addItems: called with Wrong argument types
I have the following code: self.option = QComboBox(self) self.option.addItems(self.getJson) def getJson(self): self.data = {'image' : ['planet.jpg', 'cat.png', 'building.jpg']} return…
-
1
votes1
answer226
viewsHow to Communicate Between Threads and Pyside Qt?
The graphical user interface window created in Pyside is normally executed following the normal program flow. The actual python script of the program runs in a Thread in parallel. But this thread…
-
1
votes1
answer146
viewsTypeerror: 'Function' Object is not subscriptable, how to resolve? Pyside2 Qtableview
I’m making the code to view my sqlite3 table in Qtableview, but when I put to view the table, at the time of running the code, this cited error arose, but I could not find how to solve it... Follow…
-
0
votes1
answer243
viewsPyside facility
I’m trying to install Pyside in python 3.5 (32-bit), I installed Pip without problems, but I’m not able to install the easy_install, this error appears when I run on cmd here: But when I run the…
-
0
votes1
answer87
viewsMultiple ui’s on the same Qmainwindow
I am trying to put two Qwidgets imported from ui files, however none appears, problem that does not occur when I enter only one. # -*- coding: utf-8 -*- import sys from PySide2.QtUiTools import *…
-
0
votes1
answer60
viewsHow to login with SELECT in a table? Login system Pyside2 sqlite3
I am creating a simple login system, where the user puts the data entered in a table. But in the code when comparing the data, either it ENTERS even with blank spaces or wrong information or it…
-
0
votes1
answer183
viewsQwidget class inside Qmainwindow class
I have the following code: # -*- coding: utf-8 -*- import sys from PyQt5.QtWidgets import QWidget, QVBoxLayout, QHBoxLayout, QPushButton from PyQt5.QtWidgets import QSpacerItem, QLabel, QComboBox…
-
0
votes0
answers41
viewsHow to open a new Window in Pyside2?
I was using a stop function to open the windows in a kind of window manager. At the top of the class I leave the menu = False, and when it becomes True in the function, it is for the window to open,…
-
0
votes1
answer52
viewsPyside2 error when using Qwidget.render() method, how to bypass?
I am having trouble printing a widget. When executing the code below an error is returned. #p é uma instancia QPrinter painter = QPainter(p) painter.setRenderHint(QPainter.HighQualityAntialiasing)…
-
-1
votes1
answer16
viewsPyside2 // How to change frame without hiding buttons?
I created a window with 4 frames that alternate when clicking the corresponding buttons, but when clicking any button, the frame changes to the corresponding one but the buttons disappear, where did…