7 references to GetFlowDirection
System.Windows.Forms (7)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1310closeOnHorizontalKey = FlowLayout.GetFlowDirection(this) == FlowDirection.TopDown && !FlowLayout.GetWrapContents(this);
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (2)
103if (FlowLayout.GetFlowDirection(this) != FlowDirection.TopDown) 115if (FlowLayout.GetFlowDirection(this) != FlowDirection.LeftToRight)
System\Windows\Forms\Layout\FlowLayout.cs (3)
55FlowDirection flowDirection = GetFlowDirection(container); 104return LayoutUtils.FlipSizeIf(flowDirection == FlowDirection.TopDown || GetFlowDirection(container) == FlowDirection.BottomUp, layoutSize); 300Debug.Assert(GetFlowDirection(container) == value, "GetFlowDirection should return the same value as we set");
System\Windows\Forms\Panels\FlowLayoutSettings.cs (1)
24get => FlowLayout.GetFlowDirection(Owner!);