2 writes to _orientation
PresentationFramework (2)
src\Framework\System\Windows\Controls\WrapPanel.cs (2)
192_orientation = orientation; 200_orientation = orientation;
4 references to _orientation
PresentationFramework (4)
src\Framework\System\Windows\Controls\WrapPanel.cs (4)
209get { return (_orientation == Orientation.Horizontal ? U : V); } 210set { if(_orientation == Orientation.Horizontal) U = value; else V = value; } 214get { return (_orientation == Orientation.Horizontal ? V : U); } 215set { if(_orientation == Orientation.Horizontal) V = value; else U = value; }