Ruby/TK - 消息框部件



标准选项

部件特定选项

序号 选项和描述
1

icon => 字符串

指定消息框的图标。有效值为 errorinfoquestionwarning

2

type => 字符串

指定消息框的类型。有效值为 abortretryignoreokokcancelretrycancelyesnoyesnocancel。类型决定要显示的按钮。

3

default => 字符串

指定默认按钮。这必须是 abortretryignoreokcancelyesno 之一,取决于前面指定的 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 MsgBox
ruby_tk_guide.htm
广告