1 type derived from FlowLayout
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (1)
826
internal sealed class ToolStripDropDownLayoutEngine :
FlowLayout
{
1 instantiation of FlowLayout
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Layout\FlowLayout.cs (1)
17
internal static readonly FlowLayout Instance = new
FlowLayout
();
29 references to FlowLayout
System.Windows.Forms (29)
winforms\Managed\System\WinForms\FlowLayoutPanel.cs (2)
28
_flowLayoutSettings =
FlowLayout
.CreateSettings(this);
33
get { return
FlowLayout
.Instance; }
winforms\Managed\System\WinForms\FlowLayoutSettings.cs (7)
22
get { return
FlowLayout
.Instance; }
30
get { return
FlowLayout
.GetFlowDirection(Owner); }
32
FlowLayout
.SetFlowDirection(Owner, value);
42
get { return
FlowLayout
.GetWrapContents(Owner); }
44
FlowLayout
.SetWrapContents(Owner, value);
50
IArrangedElement element =
FlowLayout
.Instance.CastToArrangedElement(child);
57
IArrangedElement element =
FlowLayout
.Instance.CastToArrangedElement(child);
winforms\Managed\System\WinForms\Layout\FlowLayout.cs (1)
17
internal static readonly
FlowLayout
Instance = new FlowLayout();
winforms\Managed\System\WinForms\ToolStrip.cs (2)
1359
if (!(layoutEngine is
FlowLayout
)) {
1360
layoutEngine =
FlowLayout
.Instance;
winforms\Managed\System\WinForms\ToolStripDropDown.cs (2)
1537
closeOnHorizontalKey =
FlowLayout
.GetFlowDirection(this) == FlowDirection.TopDown && !
FlowLayout
.GetWrapContents(this);
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (1)
573
FlowLayoutSettings settings =
FlowLayout
.CreateSettings(this);
winforms\Managed\System\WinForms\ToolStripOverflow.cs (9)
111
return
FlowLayout
.Instance;
127
if (
FlowLayout
.GetFlowDirection(this) != FlowDirection.TopDown) {
128
FlowLayout
.SetFlowDirection(this, FlowDirection.TopDown);
130
if (
FlowLayout
.GetWrapContents(this)) {
131
FlowLayout
.SetWrapContents(this, false);
135
if (
FlowLayout
.GetFlowDirection(this) != FlowDirection.LeftToRight) {
136
FlowLayout
.SetFlowDirection(this, FlowDirection.LeftToRight);
138
if (!
FlowLayout
.GetWrapContents(this)) {
139
FlowLayout
.SetWrapContents(this, true);
winforms\Managed\System\WinForms\ToolStripPanel.cs (4)
221
return
FlowLayout
.Instance;
478
FlowLayout
.SetFlowDirection(this, FlowDirection.TopDown);
481
FlowLayout
.SetFlowDirection(this, FlowDirection.LeftToRight);
483
FlowLayout
.SetWrapContents(this, false);
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (1)
188
return
FlowLayout
.Instance;