Tk - Button 按钮小部件

Tk 按钮小部件是触发操作的可点击小部件。 按钮小部件的语法如下所示 −

button buttonName options

选项

下表列出了按钮小部件的可用选项 −

序号 语法和描述
1

-font fontDescriptor

用于设置小部件的字体。

2

-height number

用于设置小部件的高度。

3

-command action

设置按钮的命令操作。

4

-text text

设置小部件的文本。

5

-width number

设置小部件的宽度。

下面显示了一个简单的按钮小部件 −

#!/usr/bin/wish

grid [label .myLabel  -text "Click the buttons" -textvariable labelText]
grid [button .myButton1  -text "Button 1" -font {Helvetica -18 bold} -height 5 -width 10
   -command "set labelText clicked_top_btn"]
grid [button .myButton2 -text "Button 2" -font {Helvetica -18 bold} -height 5 -width 10
   -command "set labelText clicked_bottom_btn"]

当我们运行上面的程序时,我们将得到以下输出 −

按钮示例

当我们点击Button1时,我们将得到以下输出 −

点击按钮示例1

当我们点击Button2时,我们将得到以下输出 −

点击按钮示例2

tk_basic_widgets.html