I’m trying to apply a combobox to a small GTK3 interface, but I can’t really figure out how to populate its list, and how to connect the interface’s combobox with my python code.
Could someone show me how in a little example? The rest of it I will be able to finish.
ComboBoxes, like TextViews or TreeViews are widgets that clearly separates the View (what it looks like) from the Model (What info they hold). You need to do in Glade:
The smaller example I could think of is this one:
test.glade
test.py
Kind regards