7 references to GetWrapContents
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)
108if (FlowLayout.GetWrapContents(this)) 120if (!FlowLayout.GetWrapContents(this))
System\Windows\Forms\Layout\FlowLayout.cs (3)
56bool wrapContents = GetWrapContents(container); 170bool wrapContents = GetWrapContents(containerProxy.Container); 288Debug.Assert(GetWrapContents(container) == value, "GetWrapContents should return the same value as we set");
System\Windows\Forms\Panels\FlowLayoutSettings.cs (1)
37get => FlowLayout.GetWrapContents(Owner!);