PySimpleGUI

Results 1145 comments of PySimpleGUI

I generally prefer the `read_all_windows` approach as it has a lower chance of missing events or getting things out of order. The downside is a couple of features that were...

Maybe a "Tree" would be a good way to represent your data since you can mix individual items and lists of items. You can delete a "node" that is an...

Wow.... I never fail to learn something interesting from Jason's code! Good stuff! I've not used map the way you did to get the max length. I've always used a...

I liked Jason's "expand a node" feature in the example. I added a new parameter to the `Tree.update` method. The docstring for the update method is now: ```python def update(self,...

Yea, unlike some other elements, the `Input` element for example, the `Spin` doesn't have the "disabled colors" exposed in the API. The `Input` element has these additional parameters in the...

I recommend using `psgcompiler` as it's our newer front-end for PyInstaller and has as lot more options.

Three of the more recent additions have been high contrast... Neon Blue 1, Neon Green 1, Neon Yellow 1. ![image](https://github.com/PySimpleGUI/PySimpleGUI/assets/46163555/ffff5c55-fa21-4205-b076-15335bedc4b3) ![image](https://github.com/PySimpleGUI/PySimpleGUI/assets/46163555/019eaddf-2d1b-4c64-a2ae-f2021c093e31) ![image](https://github.com/PySimpleGUI/PySimpleGUI/assets/46163555/3064bc1b-da58-4a55-a78d-9c3d41e9cba2) Of course anyone can create their own custom...

The early versions of PySimpleGUIQt supported both PyQt4 and PySide2. Supporting both versions became more and more difficult so I made a decision to go with PySide2. The upcoming PySimpleGUI...

> For some internal reason we need to use PyQT6. Can you share more details? Are there specific features of PyQt6 that are needed that are not present in PySide6?...

Very helpful @sborisov-int ! I understand. It's less about the functioning of PySimpleGUIQt and more about you've already got PyQt in your system for other reasons. I appreciate the explanation.