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