OnLostFocus() protected method

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