1 type derived from FlowLayout
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownMenu.ToolStripDropDownLayoutEngine.cs (1)
11
internal sealed class ToolStripDropDownLayoutEngine :
FlowLayout
1 instantiation of FlowLayout
System.Windows.Forms (1)
System\Windows\Forms\Layout\FlowLayout.cs (1)
10
internal static FlowLayout Instance { get; } =
new
();
25 references to FlowLayout
System.Windows.Forms (25)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (2)
1205
if (_layoutEngine is not
FlowLayout
)
1207
_layoutEngine =
FlowLayout
.Instance;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
1310
closeOnHorizontalKey =
FlowLayout
.GetFlowDirection(this) == FlowDirection.TopDown && !
FlowLayout
.GetWrapContents(this);
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (9)
84
return
FlowLayout
.Instance;
103
if (
FlowLayout
.GetFlowDirection(this) != FlowDirection.TopDown)
105
FlowLayout
.SetFlowDirection(this, FlowDirection.TopDown);
108
if (
FlowLayout
.GetWrapContents(this))
110
FlowLayout
.SetWrapContents(this, false);
115
if (
FlowLayout
.GetFlowDirection(this) != FlowDirection.LeftToRight)
117
FlowLayout
.SetFlowDirection(this, FlowDirection.LeftToRight);
120
if (!
FlowLayout
.GetWrapContents(this))
122
FlowLayout
.SetWrapContents(this, true);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (4)
173
return
FlowLayout
.Instance;
406
FlowLayout
.SetFlowDirection(this, FlowDirection.TopDown);
410
FlowLayout
.SetFlowDirection(this, FlowDirection.LeftToRight);
413
FlowLayout
.SetWrapContents(this, false);
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (1)
173
return
FlowLayout
.Instance;
System\Windows\Forms\Layout\FlowLayout.cs (1)
10
internal static
FlowLayout
Instance { get; } = new();
System\Windows\Forms\Panels\FlowLayoutPanel.cs (1)
23
public override LayoutEngine LayoutEngine =>
FlowLayout
.Instance;
System\Windows\Forms\Panels\FlowLayoutSettings.cs (5)
17
public override LayoutEngine LayoutEngine =>
FlowLayout
.Instance;
24
get =>
FlowLayout
.GetFlowDirection(Owner!);
27
FlowLayout
.SetFlowDirection(Owner!, value);
37
get =>
FlowLayout
.GetWrapContents(Owner!);
40
FlowLayout
.SetWrapContents(Owner!, value);