1 write to _children
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
1487
_children
= GetChildrenCore();
30 references to _children
PresentationCore (30)
System\Windows\Automation\Peers\AutomationPeer.cs (30)
1443
return
_children
;
1470
if (
_children
!= null &&
_children
.Count > 0)
1472
peer =
_children
[0];
1488
if (
_children
!= null)
1490
int count =
_children
.Count;
1493
_children
[i]._parent = this;
1494
_children
[i]._index = i;
1495
_children
[i]._hwnd = _hwnd;
1516
if (
_children
!= null &&
_children
.Count > 0)
1518
peer =
_children
[
_children
.Count - 1];
1541
if ( parent.
_children
!= null
1543
&& _index + 1 < parent.
_children
.Count
1544
&& parent.
_children
[_index] == this )
1546
sibling = parent.
_children
[_index + 1];
1564
if ( parent.
_children
!= null
1566
&& _index < parent.
_children
.Count
1567
&& parent.
_children
[_index] == this )
1569
sibling = parent.
_children
[_index - 1];
1629
Debug.Assert(caller.
_children
!= null, "iteration over a null family");
1650
iterationParent = (_parent.
_children
== null || _parent.
_children
.Count == caller.
_children
.Count)
1889
List<AutomationPeer> oldChildren =
_children
;
1914
if(
_children
!= null)
1916
for(int count =
_children
.Count, i = 0; i < count; i++)
1918
AutomationPeer child =
_children
[i];
2229
get { return
_children
; }