14 references to SelectiveScrollingOrientation
PresentationFramework (14)
src\Framework\System\Windows\Controls\BooleanToSelectiveScrollingOrientationConverter.cs (4)
29if (value is bool && parameter is SelectiveScrollingOrientation) 32var parameterSelectiveScrollingOrientation = (SelectiveScrollingOrientation)parameter; 40return SelectiveScrollingOrientation.Both;
src\Framework\System\Windows\Controls\Primitives\SelectiveScrollingGrid.cs (10)
27typeof(SelectiveScrollingOrientation), 29new FrameworkPropertyMetadata(SelectiveScrollingOrientation.Both, new PropertyChangedCallback(OnSelectiveScrollingOrientationChanged))); 36public static SelectiveScrollingOrientation GetSelectiveScrollingOrientation(DependencyObject obj) 38return (SelectiveScrollingOrientation)obj.GetValue(SelectiveScrollingOrientationProperty); 46public static void SetSelectiveScrollingOrientation(DependencyObject obj, SelectiveScrollingOrientation value) 59SelectiveScrollingOrientation orientation = (SelectiveScrollingOrientation)e.NewValue; 71if (orientation == SelectiveScrollingOrientation.Both) 80if (orientation != SelectiveScrollingOrientation.Horizontal) 88if (orientation != SelectiveScrollingOrientation.Vertical)