dialog2.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # dialog2.tcl --
  2. #
  3. # This demonstration script creates a dialog box with a global grab.
  4. #
  5. # RCS: @(#) $Id: dialog2.tcl,v 1.3 2001/11/05 10:13:53 dkf Exp $
  6. after idle {
  7.     .dialog2.msg configure -wraplength 4i
  8. }
  9. after 100 {
  10.     grab -global .dialog2
  11. }
  12. set i [tk_dialog .dialog2 "Dialog with global grab" {This dialog box uses a global grab, so it prevents you from interacting with anything on your display until you invoke one of the buttons below.  Global grabs are almost always a bad idea; don't use them unless you're truly desperate.} warning 0 OK Cancel {Show Code}]
  13. switch $i {
  14.     0 {puts "You pressed OK"}
  15.     1 {puts "You pressed Cancel"}
  16.     2 {showCode .dialog2}
  17. }