GUI: Utilisation de checkBox

Author:

 tkinter
{filelink=15674}

 
from Tkinter import *
states = []
def onPress(i):
    states[i] = not states[i]         
 
root = Tk( )
root.title("Bouton des options")
for i in range(10):
    chk = Checkbutton(root, text=str(i), command=(lambda i=i: onPress(i)) )
    chk.pack(side=LEFT)
    states.append(0)
root.mainloop( )