2 writes to _orientation
PresentationFramework (2)
System\Windows\Controls\WrapPanel.cs (2)
190
_orientation
= orientation;
198
_orientation
= orientation;
4 references to _orientation
PresentationFramework (4)
System\Windows\Controls\WrapPanel.cs (4)
207
get { return (
_orientation
== Orientation.Horizontal ? U : V); }
208
set { if(
_orientation
== Orientation.Horizontal) U = value; else V = value; }
212
get { return (
_orientation
== Orientation.Horizontal ? V : U); }
213
set { if(
_orientation
== Orientation.Horizontal) V = value; else U = value; }