Exemplo n.º 1
0
 public override void SetKeyboardReturnKey(NativeKeyboardReturnKey returnKey)
 {
     this.returnKey = returnKey;
 }
 public NativeKeyboardReturnKeyPressedEventArgs(NativeKeyboardReturnKey aReturnKeyType)
 {
     ReturnKeyType = aReturnKeyType;
 }
Exemplo n.º 3
0
 public ReturnKeyPressed(NativeKeyboardReturnKey returnKey)
 {
     ReturnKey = returnKey;
 }
Exemplo n.º 4
0
 public void OnNativeKeyboardReturnKeyPressed(NativeKeyboardReturnKey aReturnKey)
 {
     Service.Get <EventDispatcher>().DispatchEvent(new KeyboardEvents.ReturnKeyPressed(aReturnKey));
 }
Exemplo n.º 5
0
 public void ShowKeyboard(int characterLimit, NativeKeyboardReturnKey returnKeyType, bool showSuggestions)
 {
     nativeKeyboardManager.Keyboard.ShowKeyboard(this, NativeKeyboardAlignment.Left, NativeKeyboardEntryType.Default, returnKeyType, characterLimit, showSuggestions);
 }
Exemplo n.º 6
0
 public virtual void SetKeyboardReturnKey(NativeKeyboardReturnKey returnKey)
 {
 }
Exemplo n.º 7
0
 public virtual void ShowKeyboard(INativeKeyboardEvents aCaller, NativeKeyboardAlignment aAlignment = NativeKeyboardAlignment.Left, NativeKeyboardEntryType aKeyboardType = NativeKeyboardEntryType.Default, NativeKeyboardReturnKey aReturnKeyType = NativeKeyboardReturnKey.Done, int aMaxCharacters = 0, bool aShowSuggestions = false, bool aMultipleLines = false, bool aPassword = false)
 {
 }