Evbpc.Framework.Windows.Forms.Form.OnShown C# (CSharp) 메소드

OnShown() 보호된 메소드

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.
리턴 void
        protected virtual void OnShown(EventArgs e)
        {
            var evenHandler = Shown;
            evenHandler?.Invoke(this, e); 
        }