tests/C_C++/Tcl/button_help.tcl
2024-12-10 20:40:17 +01:00

8 lines
134 B
Tcl

package require Tk
wm title . "Button example"
frame .main
pack .main
button .mybutton -text "press me" -command baah
pack .mybutton