⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 messagebox

📁 linux 下的源代码分析阅读器 red hat公司新版
💻
字号:
#!/bin/sh# ----------------------------------------------------------------------#  DEMO: messagebox in [incr Widgets]# ----------------------------------------------------------------------#\exec itkwish "$0" ${1+"$@"}package require Iwidgets 3.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 + -