6 implementations of ParticipatesInLayout
System.Windows.Forms (6)
System\Windows\Forms\Control.cs (1)
12574
bool IArrangedElement.
ParticipatesInLayout
=> GetState(States.Visible);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4664
bool IArrangedElement.
ParticipatesInLayout
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
970
bool IArrangedElement.
ParticipatesInLayout
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (1)
65
bool IArrangedElement.
ParticipatesInLayout
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (1)
654
bool IArrangedElement.
ParticipatesInLayout
System\Windows\Forms\Layout\ArrangedElement.cs (1)
105
public virtual bool
ParticipatesInLayout
26 references to ParticipatesInLayout
System.Windows.Forms (26)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
387
if (overflow || ((IArrangedElement)item).
ParticipatesInLayout
)
423
if (((IArrangedElement)item).
ParticipatesInLayout
)
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (6)
877
if (((IArrangedElement)item).
ParticipatesInLayout
)
2285
if (((IArrangedElement)item).
ParticipatesInLayout
)
2344
if (((IArrangedElement)item).
ParticipatesInLayout
)
3201
if (!HasVisibleItems && e.Item is not null && ((IArrangedElement)e.Item).
ParticipatesInLayout
)
4271
if (((IArrangedElement)item).
ParticipatesInLayout
)
4336
if (((IArrangedElement)item).
ParticipatesInLayout
)
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
584
bool controlVisibleStateFlag = ((IArrangedElement)ControlInternal).
ParticipatesInLayout
;
585
bool itemVisibleStateFlag = ((IArrangedElement)(this)).
ParticipatesInLayout
;
System\Windows\Forms\Controls\ToolStrips\ToolStripMenuItem.cs (1)
535
menuItem.Visible = ((IArrangedElement)this).
ParticipatesInLayout
;
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (1)
138
if (((IArrangedElement)item).
ParticipatesInLayout
)
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelCell.cs (1)
117
return InnerElement.
ParticipatesInLayout
;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (1)
356
if (element.
ParticipatesInLayout
)
System\Windows\Forms\Controls\ToolStrips\ToolStripSplitStackLayout.cs (5)
71
if (!((IArrangedElement)item).
ParticipatesInLayout
)
121
if (!((IArrangedElement)item).
ParticipatesInLayout
)
263
if (!((IArrangedElement)item).
ParticipatesInLayout
)
405
if (!((IArrangedElement)item).
ParticipatesInLayout
)
571
if (!((IArrangedElement)item).
ParticipatesInLayout
)
System\Windows\Forms\Layout\CommonProperties.cs (2)
461
bool result = state[s_dockModeSection] == (int)DockAnchorMode.Dock && element.
ParticipatesInLayout
;
463
Debug.Assert(((xGetDock(element) != DockStyle.None) && element.
ParticipatesInLayout
) == result,
System\Windows\Forms\Layout\DefaultLayout.cs (1)
1120
if (!CommonProperties.GetNeedsDockLayout(element) && element.
ParticipatesInLayout
)
System\Windows\Forms\Layout\FlowLayout.ElementProxy.cs (1)
71
public bool ParticipatesInLayout => _element!.
ParticipatesInLayout
;
System\Windows\Forms\Layout\TableLayout.ContainerInfo.cs (1)
243
if (!element.
ParticipatesInLayout
)
System\Windows\Forms\Layout\TableLayout.cs (2)
1402
if (!element.
ParticipatesInLayout
)
1461
if (!element.
ParticipatesInLayout
)