form.tcl 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # form.tcl --
  2. #
  3. # This demonstration script creates a simple form with a bunch
  4. # of entry widgets.
  5. if {![info exists widgetDemo]} {
  6. error "This script should be run from the \"widget\" demo."
  7. }
  8. package require Tk
  9. set w .form
  10. catch {destroy $w}
  11. toplevel $w
  12. wm title $w "Form Demonstration"
  13. wm iconname $w "form"
  14. positionWindow $w
  15. label $w.msg -font $font -wraplength 4i -justify left -text "This window contains a simple form where you can type in the various entries and use tabs to move circularly between the entries."
  16. pack $w.msg -side top
  17. ## See Code / Dismiss buttons
  18. set btns [addSeeDismiss $w.buttons $w]
  19. pack $btns -side bottom -fill x
  20. foreach i {f1 f2 f3 f4 f5} {
  21. frame $w.$i -bd 2
  22. entry $w.$i.entry -relief sunken -width 40
  23. label $w.$i.label
  24. pack $w.$i.entry -side right
  25. pack $w.$i.label -side left
  26. }
  27. $w.f1.label config -text Name:
  28. $w.f2.label config -text Address:
  29. $w.f5.label config -text Phone:
  30. pack $w.msg $w.f1 $w.f2 $w.f3 $w.f4 $w.f5 -side top -fill x
  31. bind $w <Return> "destroy $w"
  32. focus $w.f1.entry