7 writes to childCollection
System.Windows.Forms (7)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (7)
311childCollection = new GridEntryCollection(this, null); 320this.childCollection = null; 322this.childCollection = value; 1188this.childCollection = new GridEntryCollection(this, new GridEntry[0]); 1233this.childCollection = new GridEntryCollection(this, new GridEntry[0]); 1247this.childCollection = new GridEntryCollection(this, childProps); 1282childCollection = null;
39 references to childCollection
System.Windows.Forms (39)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (39)
310if (childCollection == null) { 313return childCollection; 317if (this.childCollection != value) { 318if (this.childCollection != null) { 319this.childCollection.Dispose(); 338if (childCollection == null && !Disposed) { 341return childCollection; 402if (fExpandable && childCollection != null && childCollection.Count > 0) { 436if (childCollection == null || childCollection.Count == 0) { 446if (childCollection != null && childCollection.Count > 0) { 632if (IsExpandable && childCollection != null && childCollection.Count == 0) { 857if (this.childCollection != null) { 858for (int i = 0; i < childCollection.Count; i++) { 859childCollection.GetEntry(i).ParentGridEntry = this; 1184if (this.childCollection != null) { 1185this.childCollection.Clear(); 1194if (!diffOldChildren && childCollection != null && childCollection.Count > 0) { 1206if (diffOldChildren && childCollection != null && childCollection.Count > 0) { 1208if (childProps.Length == childCollection.Count) { 1210if (!childProps[i].NonParentEquals(childCollection[i])) { 1229if (this.childCollection != null) { 1230this.childCollection.Clear(); 1242if (this.childCollection != null) { 1243this.childCollection.Clear(); 1244this.childCollection.AddRange(childProps); 1280if (childCollection != null) { 1281childCollection.Dispose(); 2570if (this.childCollection != null) { 2581IEnumerator childEnum = childCollection.GetEnumerator(); 2642bool fChildrenPrior = (childCollection != null && childCollection.Count > 0); 2645bool fChildrenAfter = (childCollection != null && childCollection.Count > 0);