2 writes to _orientation
PresentationFramework (2)
System\Windows\Controls\WrapPanel.cs (2)
180_orientation = orientation; 188_orientation = orientation;
4 references to _orientation
PresentationFramework (4)
System\Windows\Controls\WrapPanel.cs (4)
197get { return (_orientation == Orientation.Horizontal ? U : V); } 198set { if(_orientation == Orientation.Horizontal) U = value; else V = value; } 202get { return (_orientation == Orientation.Horizontal ? V : U); } 203set { if(_orientation == Orientation.Horizontal) V = value; else U = value; }