7 implementations of Children
System.Windows.Forms (7)
winforms\Managed\System\WinForms\ArrangedElement.cs (1)
46
ArrangedElementCollection IArrangedElement.
Children
{
winforms\Managed\System\WinForms\Control.cs (1)
14457
ArrangedElementCollection IArrangedElement.
Children
{
winforms\Managed\System\WinForms\ToolStrip.cs (1)
4776
ArrangedElementCollection IArrangedElement.
Children
{
winforms\Managed\System\WinForms\ToolStripItem.cs (1)
1130
ArrangedElementCollection IArrangedElement.
Children
{
winforms\Managed\System\WinForms\ToolStripOverflow.cs (1)
75
ArrangedElementCollection IArrangedElement.
Children
{
winforms\Managed\System\WinForms\ToolStripPanel.cs (1)
1307
ArrangedElementCollection IArrangedElement.
Children
{
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (1)
617
ArrangedElementCollection IArrangedElement.
Children
{
19 references to Children
System.Windows.Forms (19)
winforms\Managed\System\WinForms\Layout\CommonProperties.cs (1)
334
ArrangedElementCollection controlsCollection = start.
Children
;
winforms\Managed\System\WinForms\Layout\DockAndAnchorLayout.cs (6)
31
ArrangedElementCollection children = container.
Children
;
241
ArrangedElementCollection children = container.
Children
;
266
ArrangedElementCollection children = container.
Children
;
466
ArrangedElementCollection children = container.
Children
;
825
ArrangedElementCollection children = container.
Children
;
827
IArrangedElement element = container.
Children
[i];
winforms\Managed\System\WinForms\Layout\FlowLayout.cs (5)
115
for(int i = 0; i < container.
Children
.Count;) {
125
Debug.Assert(wrapContents == true || breakIndex == container.
Children
.Count,
140
if (container.
Children
.Count != 0 && !measureOnly) {
159
return xLayoutRow(containerProxy, elementProxy, startIndex, /* endIndex = */ containerProxy.Container.
Children
.Count, displayRectangle, out breakIndex, /* measureOnly = */ true);
174
ArrangedElementCollection collection = containerProxy.Container.
Children
;
winforms\Managed\System\WinForms\Layout\TableLayout.cs (5)
1261
ArrangedElementCollection children = container.
Children
;
1288
ArrangedElementCollection children = container.
Children
;
1673
ArrangedElementCollection children = Container.
Children
;
2065
ArrayList layoutInfos = new ArrayList(container.
Children
.Count);
2070
foreach(IArrangedElement element in container.
Children
) {
winforms\Managed\System\WinForms\TableLayoutSettings.cs (2)
447
List<ControlInformation> controlsInfo = new List<ControlInformation>(Owner.
Children
.Count);
449
foreach (IArrangedElement element in Owner.
Children
) {