Implemented interface member:
property
Orientation
System.Windows.Controls.IStackMeasure.Orientation
6 writes to Orientation
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
InlineDiagnostics\InlineDiagnosticsTag.cs (1)
100Orientation = Orientation.Horizontal,
InlineHints\InlineHintsTag.cs (1)
190Orientation = Orientation.Vertical
Microsoft.VisualStudio.LanguageServices (1)
UnusedReferences\Dialog\UnusedReferencesTableProvider.ColumnDefinitions.cs (1)
64Orientation = Orientation.Horizontal,
Roslyn.VisualStudio.DiagnosticsWindow (3)
OptionPages\InternalOptionsControl.cs (2)
72Orientation = Orientation.Horizontal, 90Orientation = Orientation.Horizontal,
PerfMargin\PerfMarginPanel.cs (1)
93var s = new StackPanel() { Orientation = Orientation.Horizontal };
15 references to Orientation
PresentationFramework (15)
System\Windows\Controls\Primitives\ToolBarPanel.cs (2)
237bool horizontal = (Orientation == Orientation.Horizontal); 288bool fHorizontal = (Orientation == Orientation.Horizontal);
System\Windows\Controls\Stack.cs (12)
92SetVerticalOffset(VerticalOffset - ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 100SetVerticalOffset(VerticalOffset + ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 108SetHorizontalOffset(HorizontalOffset - ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 116SetHorizontalOffset(HorizontalOffset + ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 158SetVerticalOffset(VerticalOffset - SystemParameters.WheelScrollLines * ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 173SetVerticalOffset(VerticalOffset + SystemParameters.WheelScrollLines * ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 186SetHorizontalOffset(HorizontalOffset - 3.0 * ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 194SetHorizontalOffset(HorizontalOffset + 3.0 * ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 300/// DependencyProperty for <see cref="Orientation" /> property. 327get { return this.Orientation; } 871bool fHorizontal = (Orientation == Orientation.Horizontal); 913bool fHorizontal = (Orientation == Orientation.Horizontal);
System\Windows\Controls\ToolBar.cs (1)
547if (toolBarPanel.Orientation == Orientation.Horizontal)