Example #1
0
		/// <summary>
		/// Raises the <see cref="TextInput"/> event.
		/// </summary>
		/// <param name="e">Event arguments</param>
		protected virtual void OnTextInput(TextInputEventArgs e)
		{
			Properties.TriggerEvent(TextInputEvent, this, e);
		}
Example #2
0
 /// <summary>
 /// Raises the <see cref="TextInput"/> event.
 /// </summary>
 /// <param name="e">Event arguments</param>
 public virtual void OnTextInput(TextInputEventArgs e)
 {
     Properties.TriggerEvent(TextInputEvent, this, e);
 }
Example #3
0
			/// <summary>
			/// Raises the text input event.
			/// </summary>
			public void OnTextInput(Control widget, TextInputEventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnTextInput(e));
			}