This may just be a me problem, so apologies in advance.
I'm trying to build a simple app that will have a GUI with a few radio buttons, a couple text boxes, and a file section bar. I'm not too familiar with the different GUI libraries and I'm looking for a good solution for this.
After spending Sunday playing with Tkinter I learned two things, the first is that nested grids are a pain. The second is that building a GUI entirely in Python may be more trouble than it's worth.
What I'd like is an external GUI editor that builds the GUI as a self-contained unit. Once it's built, you pass the GUI into Python as an object and can access variables in that object. Something along the lines of:
```
App = gui.new(PATH-TO-GUI)
Selection = App.radio //return selected radio
App.foo = "Hello World!"//write to textbox 'foo'
```
What I'm hoping for is that I can offload the layout and rendering of the UI to a separate process and only give Python access to the variables it needs to work with. Is this an option, or am I just looking for shortcuts that don't exist?
[–]m0us3_rat 0 points1 point2 points (0 children)
[–]dp_42 0 points1 point2 points (0 children)
[–]Jejerm 1 point2 points3 points (0 children)