gooderp18绿色标准版
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
828B

  1. # dialog2.tcl --
  2. #
  3. # This demonstration script creates a dialog box with a global grab.
  4. after idle {
  5. .dialog2.msg configure -wraplength 4i
  6. }
  7. after 100 {
  8. grab -global .dialog2
  9. }
  10. set i [tk_dialog .dialog2 "Dialog with global grab" {This dialog box uses a global grab. If you are using an X11 window manager you will be prevented from interacting with anything on your display until you invoke one of the buttons below. This is almost always a bad idea; don't use global grabs with X11 unless you're truly desperate. On macOS systems you will not be able to interact with any window belonging to this process, but interaction with other macOS Applications will still be possible.}\
  11. warning 0 OK Cancel {Show Code}]
  12. switch $i {
  13. 0 {puts "You pressed OK"}
  14. 1 {puts "You pressed Cancel"}
  15. 2 {showCode .dialog2}
  16. }
上海开阖软件有限公司 沪ICP备12045867号-1