Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Tkinter refresh
#5
What do yo use the Entry for?
import sys
if 3 == sys.version_info[0]: ## 3.X is default if dual system
    import tkinter as tk     ## Python 3.x
else:
    import Tkinter as tk     ## Python 2.x

def show_choice():
    print(v.get())
    ent.delete(0, "end")

def selmunicipio():
    top = tk.Toplevel()
    top.title("Selección de Municipio")
    v.set(1)

##    for i in listamunicipios:
    for ctr in range(30):
        tk.Radiobutton(top,text=ctr+1,variable=v, command=show_choice,
                       value=ctr+1).grid(row=ctr+1, column=0, sticky='w')
        tk.Radiobutton(top,text=ctr+31,variable=v, command=show_choice,
                       value=ctr+31).grid(row=ctr+1, column=1, sticky='w')
    button = tk.Button(top, text="Elige y pulsa aquí", command=top.destroy)
    button.grid(row=100, column=0)

root=tk.Tk()
v=tk.IntVar()
ent=tk.Entry(root, bg="lightblue")
ent.grid(row=1)
tk.Button(root, text="Quit", command=root.quit).grid(row=100)
selmunicipio()
root.mainloop()
Reply


Messages In This Thread
Tkinter refresh - by eduardoforo - Nov-13-2018, 08:51 PM
RE: Tkinter refresh - by Larz60+ - Nov-13-2018, 11:27 PM
RE: Tkinter refresh - by woooee - Nov-14-2018, 02:34 AM
RE: Tkinter refresh - by eduardoforo - Nov-14-2018, 03:36 PM
RE: Tkinter refresh - by woooee - Nov-14-2018, 09:35 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  tkinter - update/refresh treeview snakes 5 21,361 Dec-02-2023, 07:05 PM
Last Post: aynous19
  [PyQt] Refresh x-labels in matplotlib animation widget JohnT 5 3,882 Apr-23-2021, 07:40 PM
Last Post: JohnT
  Refresh image in label after every 1s using simple function jenkins43 1 5,535 Jul-28-2019, 02:49 PM
Last Post: Larz60+
  Unable to update or refresh label text in tkinter jenkins43 3 6,749 Jul-24-2019, 02:09 PM
Last Post: Friend
  [Tkinter] Label doesn't refresh jollydragon 7 7,061 Jul-13-2018, 05:55 AM
Last Post: jollydragon
  [PyQt] enviremont refresh duende 2 3,476 May-13-2018, 09:49 AM
Last Post: duende
  pyqt main window refresh poblems duende 0 5,436 Apr-13-2018, 05:05 PM
Last Post: duende
  Refresh test in urwid.Text Stensborg 1 4,593 Mar-05-2018, 11:23 AM
Last Post: Stensborg
  [Tkinter] problem with refresh UI in tkinter app Philbot 5 10,978 Feb-06-2018, 01:10 PM
Last Post: Philbot
  How Can I Do Refresh Window? satrancali 0 7,133 Feb-03-2018, 07:50 AM
Last Post: satrancali

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020