MikeTheWatchGuy
MikeTheWatchGuy
Would it be helpful to have a GUI? I am interested in adding one. What I'm thinking would be helpful would be to be able: * View the results in...
Announcements
## Announcements - New Features, Design Patterns, and Methods I'm unsure how GitHub sends out updates. I don't think people are informed about Wiki changes for example. I've been announcing...
### Type of Issue (Enhancement, Error, Bug, Question) Question ---------------------------------------- #### Operating System ALL #### PySimpleGUI Port (tkinter, Qt, Wx, Web) ALL ---------------------------------------- ## Versions Version information can be obtained...
You can now double-click on a table row and it will return an event in response by setting the parameter `bind_return_key` to `True`. This Listbox element already works this way....
### Pull Request Policy I've talked about Pull Requests several times over the past year in the Announcements Issue. But, the way GitHub works, it _hides_ a LOT of posts...
Is it possible to show a PyGame window embedded in a Remi window? I managed to do this with tkinter so that now a PyGame program is capable of running...
I was able to put a Matplotlib drawing into a PySimpleGUI tkinter window, but with 3.1.3 that broke. I'm working on adding it back.... which got me thinking that I...
I saw in the readme file this line of code: `my_widget.attributes['background-image'] = "url('/my_resources:image.png')"` It made me hopeful that I could add an image to my window "easily". All of my...
Most of the GUI frameworks have a "Labelled frame" widget. These are container type widgets that group widgets like other containers. It draws a border around the contents and places...
I use the TextInput also as an "output" widget. There are 2 ways I do this. One is via re-routing stdout. In this case, the TextInput widget is updated by...