Implemented interface member:
property
Orientation
System.Windows.Controls.IStackMeasure.Orientation
15 references to Orientation
PresentationFramework (15)
src\Framework\System\Windows\Controls\Primitives\ToolBarPanel.cs (2)
247bool horizontal = (Orientation == Orientation.Horizontal); 298bool fHorizontal = (Orientation == Orientation.Horizontal);
src\Framework\System\Windows\Controls\Stack.cs (12)
104SetVerticalOffset(VerticalOffset - ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 112SetVerticalOffset(VerticalOffset + ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 120SetHorizontalOffset(HorizontalOffset - ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 128SetHorizontalOffset(HorizontalOffset + ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 170SetVerticalOffset(VerticalOffset - SystemParameters.WheelScrollLines * ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 185SetVerticalOffset(VerticalOffset + SystemParameters.WheelScrollLines * ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 198SetHorizontalOffset(HorizontalOffset - 3.0 * ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 206SetHorizontalOffset(HorizontalOffset + 3.0 * ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 316/// DependencyProperty for <see cref="Orientation" /> property. 343get { return this.Orientation; } 887bool fHorizontal = (Orientation == Orientation.Horizontal); 929bool fHorizontal = (Orientation == Orientation.Horizontal);
src\Framework\System\Windows\Controls\ToolBar.cs (1)
566if (toolBarPanel.Orientation == Orientation.Horizontal)