14 references to SelectiveScrollingOrientation
PresentationFramework (14)
System\Windows\Controls\BooleanToSelectiveScrollingOrientationConverter.cs (4)
26if (value is bool && parameter is SelectiveScrollingOrientation) 29var parameterSelectiveScrollingOrientation = (SelectiveScrollingOrientation)parameter; 37return SelectiveScrollingOrientation.Both;
System\Windows\Controls\Primitives\SelectiveScrollingGrid.cs (10)
23typeof(SelectiveScrollingOrientation), 25new FrameworkPropertyMetadata(SelectiveScrollingOrientation.Both, new PropertyChangedCallback(OnSelectiveScrollingOrientationChanged))); 32public static SelectiveScrollingOrientation GetSelectiveScrollingOrientation(DependencyObject obj) 34return (SelectiveScrollingOrientation)obj.GetValue(SelectiveScrollingOrientationProperty); 42public static void SetSelectiveScrollingOrientation(DependencyObject obj, SelectiveScrollingOrientation value) 55SelectiveScrollingOrientation orientation = (SelectiveScrollingOrientation)e.NewValue; 67if (orientation == SelectiveScrollingOrientation.Both) 76if (orientation != SelectiveScrollingOrientation.Horizontal) 86if (orientation != SelectiveScrollingOrientation.Vertical)