You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I creating mvvmlight framework and I want to add support for lanterna to that. But I didn't see this for example, in TextBlock something like onTextChanged which accepts functional interface, and for other components same.
Does your library are providing something like I need?
The text was updated successfully, but these errors were encountered:
Lanterna has a TextBox and this class has a method setTextChangeListener
You pass to it a TextChangeListener instance and this object's onTextChanged method
will then be called whenever the text gets changed. The new text content and a
boolean indicating the source of the change (by program or by user-interaction)
will be passed as arguments to that call.
Hello, I creating mvvmlight framework and I want to add support for lanterna to that. But I didn't see this for example, in
TextBlock
something likeonTextChanged
which accepts functional interface, and for other components same.Does your library are providing something like I need?
The text was updated successfully, but these errors were encountered: