Base:
property
LayoutEngine
System.Windows.Forms.Control.LayoutEngine
2 overrides of LayoutEngine
System.Windows.Forms (2)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.cs (1)
141
public override LayoutEngine
LayoutEngine
=> ToolStripDropDownLayoutEngine.LayoutInstance;
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (1)
80
public override LayoutEngine
LayoutEngine
22 references to LayoutEngine
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (4)
732
if ((
LayoutEngine
is ToolStripSplitStackLayout) && (GripStyle == ToolStripGripStyle.Visible))
2249
Size prefSize =
LayoutEngine
.GetPreferredSize(this, proposedSize - padding.Size);
4241
if (
LayoutEngine
is ToolStripSplitStackLayout)
4554
if (
LayoutEngine
is ToolStripSplitStackLayout && _layoutStyle == ToolStripLayoutStyle.StackWithOverflow)
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflowButton.cs (1)
92
if (ParentInternal is not null && ParentInternal.
LayoutEngine
is ToolStripSplitStackLayout)
System.Windows.Forms.Tests (17)
System\Windows\Forms\MenuStripTests.cs (3)
101
Assert.NotNull(control.
LayoutEngine
);
102
Assert.Same(control.
LayoutEngine
, control.
LayoutEngine
);
System\Windows\Forms\StatusStripTests.cs (3)
101
Assert.NotNull(control.
LayoutEngine
);
102
Assert.Same(control.
LayoutEngine
, control.
LayoutEngine
);
System\Windows\Forms\ToolStripDropDownTests.cs (3)
107
Assert.NotNull(control.
LayoutEngine
);
108
Assert.Same(control.
LayoutEngine
, control.
LayoutEngine
);
System\Windows\Forms\ToolStripItemTests.cs (2)
5843
owner.
LayoutEngine
.Layout(owner, null);
5881
parent.
LayoutEngine
.Layout(parent, null);
System\Windows\Forms\ToolStripTests.cs (6)
119
Assert.NotNull(control.
LayoutEngine
);
120
Assert.Same(control.
LayoutEngine
, control.
LayoutEngine
);
274
Assert.NotNull(control.
LayoutEngine
);
275
Assert.Same(control.
LayoutEngine
, control.
LayoutEngine
);