System.Windows.Forms.Form.OnShown C# (CSharp) Method

OnShown() private method

private OnShown ( EventArgs e ) : void
e EventArgs
return void
		protected virtual void OnShown (EventArgs e)
		{
			EventHandler eh = (EventHandler) (Events [ShownEvent]);
			if (eh != null)
				eh (this, e);
		}
Form