PySimpleGUI
PySimpleGUI
`psgdemos` evolved into it's current form over the years, and like software sometimes does, the error handling has lagged a little behind. We've moved the demo programs from the PySimpleGUI...
I've added better detection and reporting of missing modules. This version of the Demo Browser will be released with PySimpleGUI 5, coming very soon. Here's how a missing module error...
Demo Programs are meant to be a starting point.... a push-start with an emphasis on how to use the PySimpleGUI API calls. They're not meant to be highly robust with...
Google is one of the biggest sources of users finding us. What were you searching for that caused PySimpleGUI to pop up? What are you building? I love hearing about...
Thank you for the enhancement suggestion. We're in the final stretch of getting PySimpleGUI 5 wrapped up and launched. Once we get that behind us then we'll have some time...
This is all tkinter behavior. Expanding your test code a little.... ```python import PySimpleGUI as sg content_box = sg.Text("This is Tab 1") input_box = sg.Input(default_text="2", focus=False) tab1_layout = [[content_box]] tab2_layout...
> Thanks for looking into it for me! Of course! We're here to help. > Sounds like there's nothing for it, then? I want to check one more thing that's...
This is a duplicate of #6541. I would like to track all MacOS 14 problems in that issue. If you have new information to add, please add it to that...
Containers and the window will resize to fit the contents. I can't tell visually what's contained in the window. Is there anything actually inside the tabs? I see a lot...
I was thinking a bit more about your application and how it differs from mine that uses a lot of tabs over time. One key difference is the frequency of...