qt5 tag

25 questions


1 answers
112 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...

1 years ago

1 answers
132 views
0
Is there any book related to pyqt5?

You want to develop a program using qwebengine in qt. I'm looking for a module that can be made with Python html+css+js for about 2 weeks, and I'm going to set it as qt between cefpython and pyqt5 web...

1 years ago

1 answers
66 views
0
I want to operate console like windowpower shell while using pyqt5.

app = QApplication(sys.argv)myWindow = MyWindow()myWindow.show()app.exec_()When app.exec_() is executed in a code like this, console command line stops and nothing is entered.If I thread, will it be s...

1 years ago

1 answers
97 views
0
Python Repeat and Return

#lay.pyimport timedef loop(): x=1 y = 0 while x==1: time.sleep(1) y = y +1 return str(y)I wrote this code roughly.import layself.text_browser.setPlainText(lay.loop())The problem is that if you writ...

1 years ago

1 answers
112 views
0
Python pyqt5! I have a question.

There is a pyqt label object called xVal1, which is stored as a string in the variable op_nameA self.op_name.setText(op_value) An error appears when I try to change the label text like this.I think it...

1 years ago
« - 3 -

© 2024 OneMinuteCode. All rights reserved.