0
I need this event you have in Windows Forms:
private void richTextBox_SelectionChanged(object sender, EventArgs e)
{
}
Only for Xamarin, on Android. Note that I’m not using cross-Platform app.
I can use the event EditText_TextChanged
thus:
EditText editText;
...
editText = FindViewById<EditText>(Resource.Id.editText);
editText.TextChanged += editText_TextChanged;
But when I type editText.OnSelectionChanged
, get the bug:
Edittext.Onselectionchanged(int, int)' is Inaccessible due to its Protection level.
How do I access this event?