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)
246bool horizontal = (Orientation == Orientation.Horizontal); 297bool fHorizontal = (Orientation == Orientation.Horizontal);
System\Windows\Controls\Stack.cs (12)
98SetVerticalOffset(VerticalOffset - ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 106SetVerticalOffset(VerticalOffset + ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 114SetHorizontalOffset(HorizontalOffset - ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 122SetHorizontalOffset(HorizontalOffset + ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 164SetVerticalOffset(VerticalOffset - SystemParameters.WheelScrollLines * ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 179SetVerticalOffset(VerticalOffset + SystemParameters.WheelScrollLines * ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 192SetHorizontalOffset(HorizontalOffset - 3.0 * ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 200SetHorizontalOffset(HorizontalOffset + 3.0 * ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 310/// DependencyProperty for <see cref="Orientation" /> property. 337get { return this.Orientation; } 881bool fHorizontal = (Orientation == Orientation.Horizontal); 923bool fHorizontal = (Orientation == Orientation.Horizontal);
System\Windows\Controls\ToolBar.cs (1)
556if (toolBarPanel.Orientation == Orientation.Horizontal)