JuliaGizmos/GtkReactive.jl

[Help] Connect textbox signal to button label

OmegaLambda1998 opened this issue · 2 comments

I'd like to have a button's label always be equal to the text in a textbox. Is it possible to assign a signal to the button's label?

I think this is possible with simple Gtk. Take a look at Text Widgets tools and a = GtkEntry() # a widget for entering text method, in which is possible to link a signal to text entry or button label.

Another tip: If you wanna to do this with GtkReactive, take a look at this specific section on the documentation First example.