home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activetcltk / ActiveTcl8.3.4.1-8.win32-ix86.exe / ActiveTcl8.3.4.1-win32-ix86 / demos / IWidgets / buttonbox next >
Encoding:
Text File  |  2001-10-22  |  426 b   |  14 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: buttonbox in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. iwidgets::buttonbox .bb 
  7.  
  8. .bb add OK -text OK -command "puts OK" 
  9. .bb add Apply -text Apply -command "puts Apply"
  10. .bb add Cancel -text Cancel -command "puts Cancel"
  11. .bb default OK
  12.  
  13. pack .bb -expand yes -fill both
  14.