• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1###
2import Tix as tk
3from pprint import pprint
4
5r= tk.Tk()
6r.title("test")
7
8l=tk.Label(r, name="a_label")
9l.pack()
10
11class MyGrid(tk.Grid):
12    def __init__(self, *args, **kwargs):
13        kwargs['editnotify']= self.editnotify
14        tk.Grid.__init__(self, *args, **kwargs)
15    def editnotify(self, x, y):
16        return True
17
18g = MyGrid(r, name="a_grid",
19selectunit="cell")
20g.pack(fill=tk.BOTH)
21for x in xrange(5):
22    for y in xrange(5):
23        g.set(x,y,text=str((x,y)))
24
25c = tk.Button(r, text="Close", command=r.destroy)
26c.pack()
27
28tk.mainloop()
29