1 write to _children
PresentationCore (1)
System\Windows\Automation\Peers\AutomationPeer.cs (1)
1498
_children
= GetChildrenCore();
30 references to _children
PresentationCore (30)
System\Windows\Automation\Peers\AutomationPeer.cs (30)
1454
return
_children
;
1481
if (
_children
!= null &&
_children
.Count > 0)
1483
peer =
_children
[0];
1499
if (
_children
!= null)
1501
int count =
_children
.Count;
1504
_children
[i]._parent = this;
1505
_children
[i]._index = i;
1506
_children
[i]._hwnd = _hwnd;
1527
if (
_children
!= null &&
_children
.Count > 0)
1529
peer =
_children
[
_children
.Count - 1];
1552
if ( parent.
_children
!= null
1554
&& _index + 1 < parent.
_children
.Count
1555
&& parent.
_children
[_index] == this )
1557
sibling = parent.
_children
[_index + 1];
1575
if ( parent.
_children
!= null
1577
&& _index < parent.
_children
.Count
1578
&& parent.
_children
[_index] == this )
1580
sibling = parent.
_children
[_index - 1];
1640
Debug.Assert(caller.
_children
!= null, "iteration over a null family");
1661
iterationParent = (_parent.
_children
== null || _parent.
_children
.Count == caller.
_children
.Count)
1900
List<AutomationPeer> oldChildren =
_children
;
1925
if(
_children
!= null)
1927
for(int count =
_children
.Count, i = 0; i < count; i++)
1929
AutomationPeer child =
_children
[i];
2240
get { return
_children
; }