RhetTbull / guitk

Python GUI Toolkit for Tk (guitk): simplify the layout and construction of tkinter graphical user interfaces in python using a declarative syntax.
MIT License
17 stars 1 forks source link

Add Element.unbind_event(event_name) #3

Open RhetTbull opened 3 years ago

RhetTbull commented 3 years ago

Need a way to unbind events from elements (e.g. Element.unbind_event(event_name)) This could be done by calling Element.element.unbind(event_name) but some syntactic sugar to match bind_event might be helpful.