8 writes to _children
System.Windows.Forms (8)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (8)
181
get =>
_children
??= [];
190
_children
= null;
193
_children
= value;
209
return
_children
??= [];
936
_children
= [];
985
_children
= [];
1002
_children
= new GridEntryCollection(childProperties);
1051
_children
= null;
37 references to _children
System.Windows.Forms (37)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (37)
185
if (
_children
!= value)
187
if (
_children
is not null)
189
_children
.Dispose();
204
if (
_children
is null && !Disposed)
272
if (expandable &&
_children
is not null &&
_children
.Count > 0)
306
if (
_children
is null ||
_children
.Count == 0)
320
if (
_children
is not null &&
_children
.Count > 0)
521
if (IsExpandable &&
_children
is not null &&
_children
.Count == 0)
696
if (
_children
is not null)
698
for (int i = 0; i <
_children
.Count; i++)
700
_children
[i].ParentGridEntry = this;
930
if (
_children
is not null)
932
_children
.Clear();
942
if (!useExistingChildren &&
_children
is not null &&
_children
.Count > 0)
951
if (useExistingChildren &&
_children
is not null &&
_children
.Count > 0)
954
if (childProperties is not null && childProperties.Length ==
_children
.Count)
958
if (!childProperties[i].EqualsIgnoreParent(
_children
[i]))
979
if (
_children
is not null)
981
_children
.Clear();
995
if (
_children
is not null && childProperties is not null)
997
_children
.Clear();
998
_children
.AddRange(childProperties);
1035
if (
_children
?.Count > 0)
1037
foreach (GridEntry gridEntry in
_children
)
1050
_children
?.Dispose();
2205
if (
_children
is not null)
2217
IEnumerator childEnum =
_children
.GetEnumerator();
2260
bool childrenPrior =
_children
is not null &&
_children
.Count > 0;
2263
bool childrenAfter =
_children
is not null &&
_children
.Count > 0;