8 writes to _children
System.Windows.Forms (8)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (8)
178
get =>
_children
??= [];
185
_children
= null;
187
_children
= value;
203
return
_children
??= [];
927
_children
= [];
976
_children
= [];
993
_children
= new GridEntryCollection(childProperties);
1042
_children
= null;
36 references to _children
System.Windows.Forms (36)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (36)
182
if (
_children
!= value)
184
_children
?.Dispose();
198
if (
_children
is null && !Disposed)
263
if (expandable &&
_children
is not null &&
_children
.Count > 0)
297
if (
_children
is null ||
_children
.Count == 0)
311
if (
_children
is not null &&
_children
.Count > 0)
512
if (IsExpandable &&
_children
is not null &&
_children
.Count == 0)
687
if (
_children
is not null)
689
for (int i = 0; i <
_children
.Count; i++)
691
_children
[i].ParentGridEntry = this;
921
if (
_children
is not null)
923
_children
.Clear();
933
if (!useExistingChildren &&
_children
is not null &&
_children
.Count > 0)
942
if (useExistingChildren &&
_children
is not null &&
_children
.Count > 0)
945
if (childProperties is not null && childProperties.Length ==
_children
.Count)
949
if (!childProperties[i].EqualsIgnoreParent(
_children
[i]))
970
if (
_children
is not null)
972
_children
.Clear();
986
if (
_children
is not null && childProperties is not null)
988
_children
.Clear();
989
_children
.AddRange(childProperties);
1026
if (
_children
?.Count > 0)
1028
foreach (GridEntry gridEntry in
_children
)
1041
_children
?.Dispose();
2196
if (
_children
is not null)
2208
IEnumerator childEnum =
_children
.GetEnumerator();
2251
bool childrenPrior =
_children
is not null &&
_children
.Count > 0;
2254
bool childrenAfter =
_children
is not null &&
_children
.Count > 0;