ComponentFactory.Krypton.Toolkit.KryptonListBox.ForceControlLayout C# (CSharp) Method

ForceControlLayout() protected method

Force the layout logic to size and position the controls.
protected ForceControlLayout ( ) : void
return void
        protected void ForceControlLayout()
        {
            if (!IsHandleCreated)
            {
                _forcedLayout = true;
                OnLayout(new LayoutEventArgs(null, null));
                _forcedLayout = false;
            }
        }
KryptonListBox