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