1 write to _children
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
1485
_children
= GetChildrenCore();
30 references to _children
PresentationCore (30)
System\Windows\Automation\Peers\AutomationPeer.cs (30)
1441
return
_children
;
1468
if (
_children
!= null &&
_children
.Count > 0)
1470
peer =
_children
[0];
1486
if (
_children
!= null)
1488
int count =
_children
.Count;
1491
_children
[i]._parent = this;
1492
_children
[i]._index = i;
1493
_children
[i]._hwnd = _hwnd;
1514
if (
_children
!= null &&
_children
.Count > 0)
1516
peer =
_children
[
_children
.Count - 1];
1539
if ( parent.
_children
!= null
1541
&& _index + 1 < parent.
_children
.Count
1542
&& parent.
_children
[_index] == this )
1544
sibling = parent.
_children
[_index + 1];
1562
if ( parent.
_children
!= null
1564
&& _index < parent.
_children
.Count
1565
&& parent.
_children
[_index] == this )
1567
sibling = parent.
_children
[_index - 1];
1627
Debug.Assert(caller.
_children
!= null, "iteration over a null family");
1648
iterationParent = (_parent.
_children
== null || _parent.
_children
.Count == caller.
_children
.Count)
1887
List<AutomationPeer> oldChildren =
_children
;
1912
if(
_children
!= null)
1914
for(int count =
_children
.Count, i = 0; i < count; i++)
1916
AutomationPeer child =
_children
[i];
2227
get { return
_children
; }