14 references to SelectiveScrollingOrientation
PresentationFramework (14)
System\Windows\Controls\BooleanToSelectiveScrollingOrientationConverter.cs (4)
25if (value is bool && parameter is SelectiveScrollingOrientation) 28var parameterSelectiveScrollingOrientation = (SelectiveScrollingOrientation)parameter; 36return SelectiveScrollingOrientation.Both;
System\Windows\Controls\Primitives\SelectiveScrollingGrid.cs (10)
22typeof(SelectiveScrollingOrientation), 24new FrameworkPropertyMetadata(SelectiveScrollingOrientation.Both, new PropertyChangedCallback(OnSelectiveScrollingOrientationChanged))); 31public static SelectiveScrollingOrientation GetSelectiveScrollingOrientation(DependencyObject obj) 33return (SelectiveScrollingOrientation)obj.GetValue(SelectiveScrollingOrientationProperty); 41public static void SetSelectiveScrollingOrientation(DependencyObject obj, SelectiveScrollingOrientation value) 54SelectiveScrollingOrientation orientation = (SelectiveScrollingOrientation)e.NewValue; 66if (orientation == SelectiveScrollingOrientation.Both) 75if (orientation != SelectiveScrollingOrientation.Horizontal) 85if (orientation != SelectiveScrollingOrientation.Vertical)