OnShown() protected method

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