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

OnInitialized() protected method

Raises the Initialized event.
protected OnInitialized ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void
        protected override void OnInitialized(EventArgs e)
        {
            // Let base class raise events
            base.OnInitialized(e);

            // Force a layout now that initialization is complete
            OnLayout(new LayoutEventArgs(null, null));
        }