I want to set the method called by ValueChanged for a TextInput from Uno.
How would I go about to do that?
textInput.ValueChanged += OnValueChanged;
…
void OnValueChanged(object sender, ValueChangedArgs<string> args)
{
}
I want to set the method called by ValueChanged for a TextInput from Uno.
How would I go about to do that?
textInput.ValueChanged += OnValueChanged;
…
void OnValueChanged(object sender, ValueChangedArgs<string> args)
{
}