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