home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2005 March / PCWELT_3_2005.ISO / pcwsoft / framework-2.2.exe / combobox < prev    next >
Encoding:
Text File  |  2003-09-01  |  503 b   |  17 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: combobox in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. option add *textBackground seashell
  7.  
  8. iwidgets::combobox .cb -labeltext "Font:" -labelpos w -selectioncommand {
  9.     puts "selected: [.cb getcurselection]"
  10. }
  11.  
  12. .cb insert list end Ariel Courier Helvetica Knarly Lucida \
  13.     Rumpus Symbol Times "Zapf Dingbats"
  14.  
  15. .cb selection set Times
  16. pack .cb
  17.