home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource / 26_2.tcl < prev    next >
Text File  |  2003-04-16  |  279b  |  15 lines

  1. #
  2. # Example 26-2
  3. # A grid with sticky settings.
  4. #
  5.  
  6. foreach color {red orange yellow green blue purple} {
  7.     label .l$color -text $color -bg white
  8.     frame .f$color -background $color -width 100 -height 2
  9.     grid .l$color .f$color
  10.     grid .l$color -sticky w
  11.     grid .f$color -sticky ns
  12. }
  13.  
  14.  
  15.