1 write to _children
PresentationCore (1)
Core\CSharp\System\Windows\Automation\Peers\AutomationPeer.cs (1)
1402
_children
= GetChildrenCore();
30 references to _children
PresentationCore (30)
Core\CSharp\System\Windows\Automation\Peers\AutomationPeer.cs (30)
1353
return
_children
;
1380
if (
_children
!= null &&
_children
.Count > 0)
1382
peer =
_children
[0];
1403
if (
_children
!= null)
1405
int count =
_children
.Count;
1408
_children
[i]._parent = this;
1409
_children
[i]._index = i;
1410
_children
[i]._hwnd = _hwnd;
1431
if (
_children
!= null &&
_children
.Count > 0)
1433
peer =
_children
[
_children
.Count - 1];
1457
if ( parent.
_children
!= null
1459
&& _index + 1 < parent.
_children
.Count
1460
&& parent.
_children
[_index] == this )
1462
sibling = parent.
_children
[_index + 1];
1480
if ( parent.
_children
!= null
1482
&& _index < parent.
_children
.Count
1483
&& parent.
_children
[_index] == this )
1485
sibling = parent.
_children
[_index - 1];
1546
Debug.Assert(caller.
_children
!= null, "iteration over a null family");
1567
iterationParent = (_parent.
_children
== null || _parent.
_children
.Count == caller.
_children
.Count)
1807
List<AutomationPeer> oldChildren =
_children
;
1833
if(
_children
!= null)
1835
for(int count =
_children
.Count, i = 0; i < count; i++)
1837
AutomationPeer child =
_children
[i];
2152
get { return
_children
; }