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