OnShown() 보호된 메소드

Raises the Shown event.
protected OnShown ( EventArgs e ) : void
e System.EventArgs Event arguments
리턴 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));
			}