7 implementations of Children
System.Windows.Forms (7)
System\Windows\Forms\Control.cs (1)
12563
ArrangedElementCollection IArrangedElement.
Children
=> ChildControls ?? ArrangedElementCollection.Empty;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
4654
ArrangedElementCollection IArrangedElement.
Children
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
961
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)
1121
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
30 references to Children
System.Windows.Forms (30)
System\Windows\Forms\Layout\CommonProperties.cs (1)
363
ArrangedElementCollection controlsCollection = start.
Children
;
System\Windows\Forms\Layout\DefaultLayout.cs (6)
26
ArrangedElementCollection children = container.
Children
;
360
ArrangedElementCollection children = container.
Children
;
387
ArrangedElementCollection children = container.
Children
;
600
ArrangedElementCollection children = container.
Children
;
1116
ArrangedElementCollection children = container.
Children
;
1119
IArrangedElement element = container.
Children
[i];
System\Windows\Forms\Layout\FlowLayout.cs (15)
74
for (int i = 0; i < container.
Children
.Count;)
81
Debug.Assert(wrapContents || breakIndex == container.
Children
.Count,
99
if (container.
Children
.Count != 0 && !measureOnly)
146
endIndex: containerProxy.Container.
Children
.Count,
173
ArrangedElementCollection collection = containerProxy.Container.
Children
;
316
Padding margin = CommonProperties.GetMargin(container.
Children
[0]);
321
Debug.Assert(container.
Children
[0].Bounds.Y == margin.Top + container.DisplayRectangle.Y);
322
Debug.Assert(container.
Children
[0].Bounds.X == margin.Left + container.DisplayRectangle.X);
325
Debug.Assert(container.
Children
[0].Bounds.X == container.DisplayRectangle.X + container.DisplayRectangle.Width - container.
Children
[0].Bounds.Width - margin.Right);
326
Debug.Assert(container.
Children
[0].Bounds.Y == margin.Top + container.DisplayRectangle.Y);
329
Debug.Assert(container.
Children
[0].Bounds.Y == container.DisplayRectangle.Y + container.DisplayRectangle.Height - container.
Children
[0].Bounds.Height - margin.Bottom);
330
Debug.Assert(container.
Children
[0].Bounds.X == margin.Left + container.DisplayRectangle.X);
335
ArrangedElementCollection collection = container.
Children
;
System\Windows\Forms\Layout\TableLayout.ContainerInfo.cs (1)
236
ArrangedElementCollection children = Container.
Children
;
System\Windows\Forms\Layout\TableLayout.cs (5)
1296
ArrangedElementCollection children = container.
Children
;
1332
ArrangedElementCollection children = container.
Children
;
1394
ArrangedElementCollection children = container.
Children
;
1456
List<LayoutInfo> layoutInfos = new(container.
Children
.Count);
1459
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
)