• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""Sample taken from: http://www.tkdocs.com/tutorial/morewidgets.html and
2converted to Python, mainly to demonstrate xscrollcommand option.
3
4grid [tk::listbox .l -yscrollcommand ".s set" -height 5] -column 0 -row 0 -sticky nwes
5grid [ttk::scrollbar .s -command ".l yview" -orient vertical] -column 1 -row 0 -sticky ns
6grid [ttk::label .stat -text "Status message here" -anchor w] -column 0 -row 1 -sticky we
7grid [ttk::sizegrip .sz] -column 1 -row 1 -sticky se
8grid columnconfigure . 0 -weight 1; grid rowconfigure . 0 -weight 1
9for {set i 0} {$i<100} {incr i} {
10   .l insert end "Line $i of 100"
11   }
12"""
13import Tkinter
14import ttk
15
16root = Tkinter.Tk()
17
18l = Tkinter.Listbox(height=5)
19l.grid(column=0, row=0, sticky='nwes')
20
21s = ttk.Scrollbar(command=l.yview, orient='vertical')
22l['yscrollcommand'] = s.set
23s.grid(column=1, row=0, sticky="ns")
24
25stat = ttk.Label(text="Status message here", anchor='w')
26stat.grid(column=0, row=1, sticky='we')
27
28sz = ttk.Sizegrip()
29sz.grid(column=1, row=1, sticky='se')
30
31root.grid_columnconfigure(0, weight=1)
32root.grid_rowconfigure(0, weight=1)
33
34for i in range(100):
35    l.insert('end', "Line %d of 100" % i)
36
37root.mainloop()
38