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));
			}