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