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