PySimpleGUI

Results 1145 comments of PySimpleGUI

I [still] haven't implemented this yet, but think it would be good to do because I made a Sudoku game board that works on the other 3 ports very nicely...

![image](https://user-images.githubusercontent.com/46163555/83664021-70d6ee00-a597-11ea-989d-30aafebc8fcd.png) OMG Davide!!! I got it to work by modifying your little class..... ```python class CLASSframe( remi.gui.VBox ): def __init__(self, title, *args, **kwargs): super( CLASSframe, self ).__init__(*args, **kwargs) self.style.update({"overflow":"visible","border-width":"1px","border-style":"solid","border-color":"#7d7d7d"}) self.frame_label...

Wait, is your entire GUI in the single file app.py?? It's under 200 lines of code! And makes this GUI? Wow... that's really impressive. ![image](https://user-images.githubusercontent.com/46163555/81539826-c45e6f00-933e-11ea-957d-3f383bfb30e7.png)

The error pretty much tells you what's happening. I'm not sure where the original code came from that you're using as examples, but it's VERY old design patterns that were...

![image](https://user-images.githubusercontent.com/46163555/145684786-fe5a36a6-8b7b-42d7-a605-4405845893ed.png)

Totally understand the difficulties of working with tkinter to get just the right look. It's not easy with any of them to be honest. I'll give it a try with...

I'm familiar with the way the tkinter timers work 🙂 and the difficulty of working in an event driven environment. PySimpleGUI, the tkinter version, is a tkinter program basically so...

OK, I think I've got the hang of how to do the kind of layout you've got going. Just have to fill in the bits. ![SNAG-0828](https://user-images.githubusercontent.com/46163555/84183334-bdb83a00-aa59-11ea-8fef-9f9b87b09c6f.jpg)

Lemme clean stuff up a little and drop in a couple of blocks of info. It's about 40 lines of code at the moment with about 1/2 of it being...

OK, I've posted my code so far here: https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Dashboard.py You'll need to download the PySimpleGUI.py file from the GitHub as I added a new Theme to match your color scheme....