1 write to _children
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
1486
_children
= GetChildrenCore();
30 references to _children
PresentationCore (30)
System\Windows\Automation\Peers\AutomationPeer.cs (30)
1442
return
_children
;
1469
if (
_children
!= null &&
_children
.Count > 0)
1471
peer =
_children
[0];
1487
if (
_children
!= null)
1489
int count =
_children
.Count;
1492
_children
[i]._parent = this;
1493
_children
[i]._index = i;
1494
_children
[i]._hwnd = _hwnd;
1515
if (
_children
!= null &&
_children
.Count > 0)
1517
peer =
_children
[
_children
.Count - 1];
1540
if ( parent.
_children
!= null
1542
&& _index + 1 < parent.
_children
.Count
1543
&& parent.
_children
[_index] == this )
1545
sibling = parent.
_children
[_index + 1];
1563
if ( parent.
_children
!= null
1565
&& _index < parent.
_children
.Count
1566
&& parent.
_children
[_index] == this )
1568
sibling = parent.
_children
[_index - 1];
1628
Debug.Assert(caller.
_children
!= null, "iteration over a null family");
1649
iterationParent = (_parent.
_children
== null || _parent.
_children
.Count == caller.
_children
.Count)
1888
List<AutomationPeer> oldChildren =
_children
;
1913
if(
_children
!= null)
1915
for(int count =
_children
.Count, i = 0; i < count; i++)
1917
AutomationPeer child =
_children
[i];
2224
get { return
_children
; }