예제 #1
0
		/// <summary>
		/// Raises the <see cref="TextChanging"/> event.
		/// </summary>
		/// <param name="e">Event arguments</param>
		protected virtual void OnTextChanging(TextChangingEventArgs e)
		{
			Properties.TriggerEvent(TextChangingEvent, this, e);
		}
예제 #2
0
			/// <summary>
			/// Raises the text changed event.
			/// </summary>
			public void OnTextChanging(TextBox widget, TextChangingEventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnTextChanging(e));
			}
예제 #3
0
 /// <summary>
 /// Raises the text changed event.
 /// </summary>
 public void OnTextChanging(TextBox widget, TextChangingEventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnTextChanging(e));
 }
예제 #4
0
 /// <summary>
 /// Raises the <see cref="TextChanging"/> event.
 /// </summary>
 /// <param name="e">Event arguments</param>
 protected virtual void OnTextChanging(TextChangingEventArgs e)
 {
     Properties.TriggerEvent(TextChangingEvent, this, e);
 }
예제 #5
0
 /// <summary>
 /// Raises the text changed event.
 /// </summary>
 public void OnTextChanging(TextBox widget, TextChangingEventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnTextChanging(e);
 }