14 references to SelectiveScrollingOrientation
PresentationFramework (14)
System\Windows\Controls\BooleanToSelectiveScrollingOrientationConverter.cs (4)
28
if (value is bool && parameter is
SelectiveScrollingOrientation
)
31
var
parameterSelectiveScrollingOrientation = (
SelectiveScrollingOrientation
)parameter;
39
return
SelectiveScrollingOrientation
.Both;
System\Windows\Controls\Primitives\SelectiveScrollingGrid.cs (10)
26
typeof(
SelectiveScrollingOrientation
),
28
new FrameworkPropertyMetadata(
SelectiveScrollingOrientation
.Both, new PropertyChangedCallback(OnSelectiveScrollingOrientationChanged)));
35
public static
SelectiveScrollingOrientation
GetSelectiveScrollingOrientation(DependencyObject obj)
37
return (
SelectiveScrollingOrientation
)obj.GetValue(SelectiveScrollingOrientationProperty);
45
public static void SetSelectiveScrollingOrientation(DependencyObject obj,
SelectiveScrollingOrientation
value)
58
SelectiveScrollingOrientation
orientation = (
SelectiveScrollingOrientation
)e.NewValue;
70
if (orientation ==
SelectiveScrollingOrientation
.Both)
79
if (orientation !=
SelectiveScrollingOrientation
.Horizontal)
87
if (orientation !=
SelectiveScrollingOrientation
.Vertical)