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

  1. #
  2. # Example 24-1
  3. # Two frames packed inside the main frame.
  4. #
  5.  
  6. # Make the main window black
  7. . config -bg black
  8. # Create and pack two frames
  9. frame .one -width 40 -height 40 -bg white
  10. frame .two -width 100 -height 50 -bg grey50
  11. pack .one .two -side top
  12.  
  13.  
  14.