OnTextInput() protected method

Raises the TextInput event.
protected OnTextInput ( Eto.Forms.TextInputEventArgs e ) : void
e Eto.Forms.TextInputEventArgs Event arguments
return void
Esempio n. 1
0
			/// <summary>
			/// Raises the text input event.
			/// </summary>
			public void OnTextInput(Control widget, TextInputEventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnTextInput(e));
			}