pyside2 tag

5 questions


1 answers
82 views
0
Is there a way not to modify the item model made with QStandardItemModel?

I made a model for Treview with QStandardItemModelWhen I applied this model to the tree view, I could double-click the item to modify itIs there a way to prevent modification of the items in the model...

2 years ago

1 answers
104 views
0
How do I react when I raise the mouse cursor on Pyside2 PushButton?

Title I want to put functions such as changing the text or image of the button when I put the mouse cursor over the PushButton widget on Pyside2, but I don't know how to do it.

2 years ago

1 answers
129 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
59 views
0
I'd like to operate QcomboBox as an IF statement.

For example, if there is Naver and Daum in QcomboBox, if comboBox.currentText() = 'Naver' driver = uc.Chrome() url = 'http://naver.com' driver.get(url) if comboBox.currentText() = 'Next' driver ...

2 years ago

1 answers
72 views
0
I made an exe file with Pyside2, what should I do with the license before distribution?

I'm asking because I couldn't find it even if I searched for two days. I don't have a clue where and how to display the copyright. I used selenium, clipboard, and pyside2.

2 years ago

© 2024 OneMinuteCode. All rights reserved.