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

OnLoad() private method

private OnLoad ( EventArgs e ) : void
e System.EventArgs
return void
		protected virtual void OnLoad (EventArgs e){
			Application.AddForm (this);

			EventHandler eh = (EventHandler)(Events[LoadEvent]);
			if (eh != null)
				eh (this, e);
		}
Form