14 references to SelectiveScrollingOrientation
PresentationFramework (14)
System\Windows\Controls\BooleanToSelectiveScrollingOrientationConverter.cs (4)
28if (value is bool && parameter is SelectiveScrollingOrientation) 31var parameterSelectiveScrollingOrientation = (SelectiveScrollingOrientation)parameter; 39return SelectiveScrollingOrientation.Both;
System\Windows\Controls\Primitives\SelectiveScrollingGrid.cs (10)
26typeof(SelectiveScrollingOrientation), 28new FrameworkPropertyMetadata(SelectiveScrollingOrientation.Both, new PropertyChangedCallback(OnSelectiveScrollingOrientationChanged))); 35public static SelectiveScrollingOrientation GetSelectiveScrollingOrientation(DependencyObject obj) 37return (SelectiveScrollingOrientation)obj.GetValue(SelectiveScrollingOrientationProperty); 45public static void SetSelectiveScrollingOrientation(DependencyObject obj, SelectiveScrollingOrientation value) 58SelectiveScrollingOrientation orientation = (SelectiveScrollingOrientation)e.NewValue; 70if (orientation == SelectiveScrollingOrientation.Both) 79if (orientation != SelectiveScrollingOrientation.Horizontal) 87if (orientation != SelectiveScrollingOrientation.Vertical)