ComponentFactory.Krypton.Ribbon.ViewRibbonQATOverflowManager.Layout C# (CSharp) Method

Layout() public method

Perform a layout of the view.
public Layout ( ViewLayoutContext context ) : void
context ComponentFactory.Krypton.Toolkit.ViewLayoutContext View context for layout operation.
return void
        public override void Layout(ViewLayoutContext context)
        {
            // Prevent reentrancy
            if (!_layingOut)
            {
                _layingOut = true;

                // Update the calculated values used during layout calls
                _ribbon.CalculatedValues.Recalculate();

                // Let base class perform standard layout actions
                base.Layout(context);

                _layingOut = false;
            }
        }