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