Base:
property
LayoutEngine
System.Windows.Forms.Control.LayoutEngine
2 overrides of LayoutEngine
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (1)
141public override LayoutEngine LayoutEngine => ToolStripDropDownLayoutEngine.LayoutInstance;
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (1)
80public override LayoutEngine LayoutEngine
5 references to LayoutEngine
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (4)
731if ((LayoutEngine is ToolStripSplitStackLayout) && (GripStyle == ToolStripGripStyle.Visible)) 2242Size prefSize = LayoutEngine.GetPreferredSize(this, proposedSize - padding.Size); 4242if (LayoutEngine is ToolStripSplitStackLayout) 4554if (LayoutEngine is ToolStripSplitStackLayout && _layoutStyle == ToolStripLayoutStyle.StackWithOverflow)
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflowButton.cs (1)
92if (ParentInternal is not null && ParentInternal.LayoutEngine is ToolStripSplitStackLayout)