我有一个 UWP 应用程序,我在其中使用带有枢轴项集合的枢轴控件。现在,我的要求是捕捉枢轴项目上的向下/向上滑动手势。我做了如下的事情:
<Pivot>
<PivotItem Header="jdslj" ManipulationMode="All" ManipulationStarted="UIElement_OnManipulationStarted" ManipulationDelta="UIElement_OnManipulationDelta"></PivotItem>
<PivotItem Header="weew" ManipulationMode="All" ManipulationStarted="UIElement_OnManipulationStarted" ManipulationDelta="UIElement_OnManipulationDelta"></PivotItem>
<PivotItem Header="332" ManipulationMode="All" ManipulationStarted="UIElement_OnManipulationStarted" ManipulationDelta="UIElement_OnManipulationDelta"></PivotItem>
</Pivot>
问题是,当我这样做时,它会覆盖枢轴控制的行为,现在我无法向左/向右滑动来更改枢轴项目。
我能做些什么来同时实现这两个目标吗?