Evbpc.Framework.Windows.Forms.Form.OnLoad C# (CSharp) Method

OnLoad() protected method

Raises the Load event.
https://msdn.microsoft.com/en-us/library/system.windows.forms.form.onload(v=vs.110).aspx
protected OnLoad ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void
        protected virtual void OnLoad(EventArgs e)
        {
            var evenHandler = Load;
            evenHandler?.Invoke(this, e);
        }