1 write to NewChildCount
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
3181this.NewChildCount = newCount;
6 references to NewChildCount
System.Windows.Forms (6)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (6)
3732if (e.OldChildCount != e.NewChildCount) { 3733int newArraySize = entries.Length + (e.NewChildCount - e.OldChildCount); 3740Array.Copy(entries, parentIndex + e.OldChildCount+1, newEntries, parentIndex + e.NewChildCount+1, entries.Length - (parentIndex + e.OldChildCount + 1)); 3749Debug.Assert(childCount == e.NewChildCount, "parent reports " + childCount + " new children, event reports " + e.NewChildCount); 3763if (e.OldChildCount != e.NewChildCount) {