我有一个应用程序来阅读漫画和漫画,它使用flipview来显示页面(图像),我想添加选项以通过从下到上滑动浏览图像,在页面中执行此操作XAML的资源我添加了这个:
<Page.Resources>
<ItemsPanelTemplate x:Name="VerticalOrientation">
<StackPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</Page.Resources>
在我背后的代码中做了这个:
flipView.ItemsPanel = Resources["verticalOrientation"] as ItemsPanelTemplate;
当我在我的电脑上测试应用程序时,它按预期工作,我可以使用键盘和滚轮浏览图像。我的问题是,使用触摸设备(Windows平板电脑)不能操作,我无法刷到下一张或上一张图片。