OnGotFocus() protected method

Raises the GotFocus event.
protected OnGotFocus ( EventArgs e ) : void
e System.EventArgs Event arguments
return void
示例#1
0
文件: Control.cs 项目: mhusen/Eto
			/// <summary>
			/// Raises the got focus event.
			/// </summary>
			public void OnGotFocus(Control widget, EventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnGotFocus(e));
			}