ComponentFactory.Krypton.Toolkit.VisualControl.OnInitialized C# (CSharp) Method

OnInitialized() protected method

Raises the Initialized event.
protected OnInitialized ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
return void
        protected virtual void OnInitialized(EventArgs e)
        {
            if (Initialized != null)
                Initialized(this, EventArgs.Empty);
        }