As WictorChaves said, your question is too broad. But broadly speaking, you can also manage the Unfocused
event of the Entry
component.
See an example:
Declaring via XAML
<Entry Text={Binding CampoTexto} Unfocused="Entry_Unfocused"/>
Or declaring via C #
Entry entry = new Entry();
entry.SetBinding(Entry.TextProperty, new Binding("CampoTexto"));
entry.Unfocused += Entry_Unfocused;
And the event handler implementation would look like this:
private void Entry_Unfocused(object sender, FocusEventArgs e)
{
// Seu tratamento seria feito aqui
}
I hope I have helped.