ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.ForceControlLayout C# (CSharp) Метод

ForceControlLayout() защищенный Метод

Force the layout logic to size and position the controls.
protected ForceControlLayout ( ) : void
Результат void
        protected void ForceControlLayout()
        {
            if (!IsHandleCreated)
            {
                _forcedLayout = true;
                OnLayout(new LayoutEventArgs(null, null));
                _forcedLayout = false;
            }
        }
KryptonCheckedListBox