Tk Button Widget按钮小部件
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时,我们将得到以下输出 –