Ruby/TK - 网格几何管理器


描述

网格几何管理器是最灵活且易于使用的几何管理器。它在逻辑上将父窗口或小部件划分为二维表中的行和列。

然后,您可以分别使用行选项以适当的行和列格式放置小部件。要了解行和列选项的使用,请考虑以下示例。

句法

这是创建网格小部件的简单语法 -

grid('row'=>x, 'column'=>y)

例子

以下是使用网格几何管理器显示标签和条目小部件的代码 -

require 'tk'

top = TkRoot.new {title "Label and Entry Widget"}

#code to add a label widget
lb1 = TkLabel.new(top){
   text 'Hello World'
   background "yellow"
   foreground "blue"
   grid('row'=>0, 'column'=>0)
}

#code to add a entry widget
e1 = TkEntry.new(top){
   background "red"
   foreground "blue"
   grid('row'=>0, 'column'=>1)
}

Tk.mainloop

这将产生以下结果 -

Ruby/Tk 网格
ruby_tk_guide.htm