OnTextInput() protected method

Raises the TextInput event.
protected OnTextInput ( Eto.Forms.TextInputEventArgs e ) : void
e Eto.Forms.TextInputEventArgs Event arguments
return void
示例#1
0
文件: Control.cs 项目: mhusen/Eto
			/// <summary>
			/// Raises the text input event.
			/// </summary>
			public void OnTextInput(Control widget, TextInputEventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnTextInput(e));
			}