- Ruby 基础
- Ruby - 首页
- Ruby - 概述
- Ruby - 环境设置
- Ruby - 语法
- Ruby - 类和对象
- Ruby - 变量
- Ruby - 运算符
- Ruby - 注释
- Ruby - IF...ELSE
- Ruby - 循环
- Ruby - 方法
- Ruby - 块
- Ruby - 模块
- Ruby - 字符串
- Ruby - 数组
- Ruby - 哈希表
- Ruby - 日期和时间
- Ruby - 范围
- Ruby - 迭代器
- Ruby - 文件 I/O
- Ruby - 异常
Ruby/TK - 消息框部件
标准选项
无
部件特定选项
序号 | 选项和描述 |
---|---|
1 | icon => 字符串 指定消息框的图标。有效值为 error、info、question 或 warning。 |
2 | type => 字符串 指定消息框的类型。有效值为 abortretryignore、ok、okcancel、retrycancel、yesno 或 yesnocancel。类型决定要显示的按钮。 |
3 | default => 字符串 指定默认按钮。这必须是 abort、retry、ignore、ok、cancel、yes 或 no 之一,取决于前面指定的 messageBox 类型。 |
4 | detail => 字符串 指定 messageBox 详细信息区域的文本。 |
5 | message => 字符串 指定 messageBox 的消息文本。 |
6 | title => 字符串 指定 messageBox 的标题。 |
事件绑定
无
示例
require 'tk' root = TkRoot.new root.title = "Window" msgBox = Tk.messageBox ( 'type' => "ok", 'icon' => "info", 'title' => "This is title", 'message' => "This is message" ) Tk.mainloop
这将产生以下结果:
ruby_tk_guide.htm
广告