Implemented interface member:
property
Orientation
System.Windows.Controls.IStackMeasure.Orientation
15 references to Orientation
PresentationFramework (15)
System\Windows\Controls\Primitives\ToolBarPanel.cs (2)
236
bool horizontal = (
Orientation
== Orientation.Horizontal);
284
bool fHorizontal = (
Orientation
== Orientation.Horizontal);
System\Windows\Controls\Stack.cs (12)
91
SetVerticalOffset(VerticalOffset - ((
Orientation
== Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta));
99
SetVerticalOffset(VerticalOffset + ((
Orientation
== Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta));
107
SetHorizontalOffset(HorizontalOffset - ((
Orientation
== Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta));
115
SetHorizontalOffset(HorizontalOffset + ((
Orientation
== Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta));
157
SetVerticalOffset(VerticalOffset - SystemParameters.WheelScrollLines * ((
Orientation
== Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta));
172
SetVerticalOffset(VerticalOffset + SystemParameters.WheelScrollLines * ((
Orientation
== Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta));
185
SetHorizontalOffset(HorizontalOffset - 3.0 * ((
Orientation
== Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta));
193
SetHorizontalOffset(HorizontalOffset + 3.0 * ((
Orientation
== Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta));
299
/// DependencyProperty for <see cref="
Orientation
" /> property.
326
get { return this.
Orientation
; }
870
bool fHorizontal = (
Orientation
== Orientation.Horizontal);
912
bool fHorizontal = (
Orientation
== Orientation.Horizontal);
System\Windows\Controls\ToolBar.cs (1)
540
if (toolBarPanel.
Orientation
== Orientation.Horizontal)