Say I have an option menu network_select
that has a list of networks to connect to.
import Tkinter as tk
choices = ('network one', 'network two', 'network three')
var = tk.StringVar(root)
network_select = tk.OptionMenu(root, var, *choices)
Now, when the user presses the refresh button, I want to update the list of networks that the user can connect to.
.config
because I looked through network_select.config()
and didn't see an entry that looked like the choices I gave it.ListVar
.If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With