BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void Control_FocusChanged(object sender, Com.Syncfusion.Autocomplete.FocusChangedEventArgs e)
{
if (!e.HasFocus)
{
this.inputManager = (InputMethodManager)this.Context.GetSystemService(Android.Content.Context.InputMethodService);
this.inputManager.HideSoftInputFromWindow(Control.GetAutoEditText().WindowToken, 0);
}
} |