6 implementations of ParticipatesInLayout
System.Windows.Forms (6)
System\Windows\Forms\Control.cs (1)
12917bool IArrangedElement.ParticipatesInLayout
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4779bool IArrangedElement.ParticipatesInLayout
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
979bool IArrangedElement.ParticipatesInLayout
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (1)
65bool IArrangedElement.ParticipatesInLayout
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (1)
669bool IArrangedElement.ParticipatesInLayout
System\Windows\Forms\Layout\ArrangedElement.cs (1)
105public virtual bool ParticipatesInLayout
26 references to ParticipatesInLayout
System.Windows.Forms (26)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
387if (overflow || ((IArrangedElement)item).ParticipatesInLayout) 423if (((IArrangedElement)item).ParticipatesInLayout)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (6)
913if (((IArrangedElement)item).ParticipatesInLayout) 2367if (((IArrangedElement)item).ParticipatesInLayout) 2426if (((IArrangedElement)item).ParticipatesInLayout) 3313if (!HasVisibleItems && e.Item is not null && ((IArrangedElement)e.Item).ParticipatesInLayout) 4383if (((IArrangedElement)item).ParticipatesInLayout) 4448if (((IArrangedElement)item).ParticipatesInLayout)
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
584bool controlVisibleStateFlag = ((IArrangedElement)ControlInternal).ParticipatesInLayout; 585bool itemVisibleStateFlag = ((IArrangedElement)(this)).ParticipatesInLayout;
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
537menuItem.Visible = ((IArrangedElement)this).ParticipatesInLayout;
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (1)
138if (((IArrangedElement)item).ParticipatesInLayout)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelCell.cs (1)
117return InnerElement.ParticipatesInLayout;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (1)
371if (element.ParticipatesInLayout)
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitStackLayout.cs (5)
71if (!((IArrangedElement)item).ParticipatesInLayout) 121if (!((IArrangedElement)item).ParticipatesInLayout) 263if (!((IArrangedElement)item).ParticipatesInLayout) 405if (!((IArrangedElement)item).ParticipatesInLayout) 571if (!((IArrangedElement)item).ParticipatesInLayout)
System\Windows\Forms\Layout\CommonProperties.cs (2)
461bool result = state[s_dockModeSection] == (int)DockAnchorMode.Dock && element.ParticipatesInLayout; 463Debug.Assert(((xGetDock(element) != DockStyle.None) && element.ParticipatesInLayout) == result,
System\Windows\Forms\Layout\DefaultLayout.cs (1)
1131if (!CommonProperties.GetNeedsDockLayout(element) && element.ParticipatesInLayout)
System\Windows\Forms\Layout\FlowLayout.ElementProxy.cs (1)
71public bool ParticipatesInLayout => _element!.ParticipatesInLayout;
System\Windows\Forms\Layout\TableLayout.ContainerInfo.cs (1)
243if (!element.ParticipatesInLayout)
System\Windows\Forms\Layout\TableLayout.cs (2)
1405if (!element.ParticipatesInLayout) 1464if (!element.ParticipatesInLayout)