Implemented interface member:
property
Orientation
System.Windows.Controls.IStackMeasure.Orientation
7 writes to Orientation
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
InlineDiagnostics\InlineDiagnosticsTag.cs (1)
99Orientation = Orientation.Horizontal,
InlineHints\InlineHintsTag.cs (1)
190Orientation = Orientation.Vertical
Microsoft.VisualStudio.LanguageServices (1)
UnusedReferences\Dialog\UnusedReferencesTableProvider.ColumnDefinitions.cs (1)
63Orientation = Orientation.Horizontal,
Microsoft.VisualStudio.LanguageServices.CSharp (1)
SemanticSearch\SemanticSearchToolWindowImpl.cs (1)
242Orientation = 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)
236bool horizontal = (Orientation == Orientation.Horizontal); 284bool fHorizontal = (Orientation == Orientation.Horizontal);
System\Windows\Controls\Stack.cs (12)
91SetVerticalOffset(VerticalOffset - ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 99SetVerticalOffset(VerticalOffset + ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 107SetHorizontalOffset(HorizontalOffset - ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 115SetHorizontalOffset(HorizontalOffset + ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 157SetVerticalOffset(VerticalOffset - SystemParameters.WheelScrollLines * ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 172SetVerticalOffset(VerticalOffset + SystemParameters.WheelScrollLines * ((Orientation == Orientation.Vertical) ? 1.0 : ScrollViewer._scrollLineDelta)); 185SetHorizontalOffset(HorizontalOffset - 3.0 * ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 193SetHorizontalOffset(HorizontalOffset + 3.0 * ((Orientation == Orientation.Horizontal) ? 1.0 : ScrollViewer._scrollLineDelta)); 299/// DependencyProperty for <see cref="Orientation" /> property. 326get { return this.Orientation; } 870bool fHorizontal = (Orientation == Orientation.Horizontal); 912bool fHorizontal = (Orientation == Orientation.Horizontal);
System\Windows\Controls\ToolBar.cs (1)
540if (toolBarPanel.Orientation == Orientation.Horizontal)