2 writes to Prev
PresentationCore (2)
System\Windows\LayoutManager.cs (2)
1091
t.Next = t.
Prev
= null;
1106
t.Next = t.
Prev
= null;
5 references to Prev
PresentationCore (5)
System\Windows\LayoutManager.cs (5)
1061
_head?.
Prev
= t;
1074
if(t.
Prev
== null) _head = t.Next;
1075
else t.
Prev
.Next = t.Next;
1077
t.Next?.
Prev
= t.
Prev
;