pyqt tag

16 questions


1 answers
113 views
0
I have a question about implementing Gui using pyqt4.

First of all, there is a sauce that is salty from Python using opencv. The content of the source is, roughly speaking, the source that reads the image img, finds a square inside the img, and recognize...

2 years ago

1 answers
144 views
0
I have a QPixmapCache question from PyQt.

Currently, I am studying Python and pyqt by myself.If you don't know anything, I'm trying to implement Conway's Life Game by visiting the Internet, and I drew it again every time each cell is updated,...

2 years ago

1 answers
118 views
0
How do I change the variable value of one of the two classes?

class test1: def __init__(self): pass def test1_1(self): self.a = 0 print(self.a)class test2: def __init__(self): pass def test2_2(self): self.aaa = test1() self.aaa.a = 9999999999 print(self.a...

2 years ago

1 answers
89 views
0
I ask you a question when setting the coordinate value during the layer-out setting.

Grid layout is creating values and lists[ 1 ][ 2 ][ 3 ][ 4 ][ 5 ][ 6 ][ 7 ][ 8 ]Like the one above, I'm making 4 x 2 slots i and j were made as coordinate values, but I want to put 8 widget ...

2 years ago

1 answers
128 views
0
How do I write the Pyside2 QThread parameter?

class _Date_Thread(QThread): def run (self, param): # Where the parameter should be entered while True: print(param) time.sleep(0.1) class Ui_MainWindow(QMainWindow): def __init__(self): super()._...


1 answers
82 views
0
Reduce Python code How to reduce repetitive code within the pyqt5 class

Hello,I'm a beginner studying coding by myself.While programming through PYQT5, there is a repetitive code, so I want to reduce it, so I'm asking you a question because it didn't work well.class Ui_Ma...

2 years ago
« - 2 -

© 2024 OneMinuteCode. All rights reserved.