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