8 writes to _children
System.Windows.Forms (8)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (8)
178
get =>
_children
??= [];
187
_children
= null;
190
_children
= value;
206
return
_children
??= [];
930
_children
= [];
979
_children
= [];
996
_children
= new GridEntryCollection(childProperties);
1045
_children
= null;
37 references to _children
System.Windows.Forms (37)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (37)
182
if (
_children
!= value)
184
if (
_children
is not null)
186
_children
.Dispose();
201
if (
_children
is null && !Disposed)
266
if (expandable &&
_children
is not null &&
_children
.Count > 0)
300
if (
_children
is null ||
_children
.Count == 0)
314
if (
_children
is not null &&
_children
.Count > 0)
515
if (IsExpandable &&
_children
is not null &&
_children
.Count == 0)
690
if (
_children
is not null)
692
for (int i = 0; i <
_children
.Count; i++)
694
_children
[i].ParentGridEntry = this;
924
if (
_children
is not null)
926
_children
.Clear();
936
if (!useExistingChildren &&
_children
is not null &&
_children
.Count > 0)
945
if (useExistingChildren &&
_children
is not null &&
_children
.Count > 0)
948
if (childProperties is not null && childProperties.Length ==
_children
.Count)
952
if (!childProperties[i].EqualsIgnoreParent(
_children
[i]))
973
if (
_children
is not null)
975
_children
.Clear();
989
if (
_children
is not null && childProperties is not null)
991
_children
.Clear();
992
_children
.AddRange(childProperties);
1029
if (
_children
?.Count > 0)
1031
foreach (GridEntry gridEntry in
_children
)
1044
_children
?.Dispose();
2199
if (
_children
is not null)
2211
IEnumerator childEnum =
_children
.GetEnumerator();
2254
bool childrenPrior =
_children
is not null &&
_children
.Count > 0;
2257
bool childrenAfter =
_children
is not null &&
_children
.Count > 0;