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

OnShown() protected method

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