Exemplo n.º 1
0
 private void Entry_Focused(object sender, FocusEventArgs e)
 {
     _currententry = sender as ExtendedEntry;
     if (_currententry != null)
     {
         try
         {
             _currententry.HideKeyboard();
         }
         catch
         { }
     }
 }
        private async void Entry_Focused(object sender, FocusEventArgs e)
        {
            await Task.Delay(110);

            _currententry = sender as ExtendedEntry;
            if (_currententry != null)
            {
                try
                {
                    _currententry.HideKeyboard();
                }
                catch
                {
                }
            }
        }