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

  1. #
  2. # Example 25-4
  3. # A grid with external padding.
  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 -padx 3
  11.     grid .f$color -sticky ns -pady 1
  12. }
  13.  
  14.  
  15.