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 / checkbox < prev    next >
Encoding:
Text File  |  2001-10-22  |  411 b   |  13 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: checkbox in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. iwidgets::checkbox .cb -labeltext Styles
  7. .cb add bold -text Bold
  8. .cb add italic -text Italic
  9. .cb add underline -text Underline
  10. .cb select underline
  11.  
  12. pack .cb -padx 10 -pady 10 -fill both -expand yes
  13.