BindButton Widget
Parameters
| Name | Type | Description |
|---|---|---|
master | tkinter.Tk | |
variable | tkinter.StringVar | |
separator | str | |
command | Callable |
Methods
callback
Parameters
| Name | Type | Description |
|---|---|---|
e | tkinter.Event |
listen
get
set
Parameters
| Name | Type | Description |
|---|---|---|
value | str |
configure
Example
py
import tkinter
import tkinterplus
root = tkinter.Tk()
widget = tkinterplus.BindButton(root)
widget.pack()
root.mainloop()