📄 messagebox
字号:
# ----------------------------------------------------------------------# DEMO: messagebox in [incr Widgets]# ----------------------------------------------------------------------package require Iwidgets 4.0. configure -background whiteiwidgets::messagebox .mb -hscrollmode dynamic -labeltext "Messages" \ -labelpos n -visibleitems 50x8pack .mb -padx 5 -pady 5 -fill both -expand yes.mb type add ERROR -background red -foreground white -bell 1.mb type add WARNING -background yellow -foreground black.mb type add INFO -background white -foreground blackframe .cntls -background whitepack .cntls -padx 5 -pady 5 -fill xbutton .cntls.error -text "Error" -command { .mb issue "This is an error message in red with a beep" ERROR}pack .cntls.error -side left -expand yesbutton .cntls.warning -text "Warning" -command { .mb issue "This warning message in yellow" WARNING}pack .cntls.warning -side left -expand yesbutton .cntls.info -text "Info" -command { .mb issue "This is an informational message" INFO}pack .cntls.info -side left -expand yes
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -