7 implementations of Children
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (1)
13494
ArrangedElementCollection IArrangedElement.
Children
=> ChildControls ?? ArrangedElementCollection.Empty;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4698
ArrangedElementCollection IArrangedElement.
Children
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
966
ArrangedElementCollection IArrangedElement.
Children
=> s_emptyChildCollection;
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflow.cs (1)
55
ArrangedElementCollection IArrangedElement.
Children
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (1)
1113
ArrangedElementCollection IArrangedElement.
Children
=> RowsInternal;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanelRow.cs (1)
625
ArrangedElementCollection IArrangedElement.
Children
System\Windows\Forms\Layout\ArrangedElement.cs (1)
35
ArrangedElementCollection IArrangedElement.
Children
19 references to Children
System.Windows.Forms (19)
System\Windows\Forms\Layout\CommonProperties.cs (1)
358
ArrangedElementCollection controlsCollection = start.
Children
;
System\Windows\Forms\Layout\DefaultLayout.cs (6)
25
ArrangedElementCollection children = container.
Children
;
359
ArrangedElementCollection children = container.
Children
;
391
ArrangedElementCollection children = container.
Children
;
604
ArrangedElementCollection children = container.
Children
;
1123
ArrangedElementCollection children = container.
Children
;
1126
IArrangedElement element = container.
Children
[i];
System\Windows\Forms\Layout\FlowLayout.cs (5)
74
for (int i = 0; i < container.
Children
.Count;)
81
Debug.Assert(wrapContents || breakIndex == container.
Children
.Count,
99
if (container.
Children
.Count != 0 && !measureOnly)
147
endIndex: containerProxy.Container.
Children
.Count,
174
ArrangedElementCollection collection = containerProxy.Container.
Children
;
System\Windows\Forms\Layout\TableLayout.ContainerInfo.cs (1)
236
ArrangedElementCollection children = Container.
Children
;
System\Windows\Forms\Layout\TableLayout.cs (4)
1295
ArrangedElementCollection children = container.
Children
;
1331
ArrangedElementCollection children = container.
Children
;
1455
List<LayoutInfo> layoutInfos = new(container.
Children
.Count);
1458
foreach (IArrangedElement element in container.
Children
)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (2)
497
List<ControlInformation> controlsInfo = new(Owner!.
Children
.Count);
504
foreach (IArrangedElement element in Owner.
Children
)