Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/312.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/jquery/76.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 在项目之间滚动FlipView Windows 8_C#_Xaml_Windows 8_Windows Runtime_Flipview - Fatal编程技术网

C# 在项目之间滚动FlipView Windows 8

C# 在项目之间滚动FlipView Windows 8,c#,xaml,windows-8,windows-runtime,flipview,C#,Xaml,Windows 8,Windows Runtime,Flipview,我想制作一个flipview,它允许使用鼠标滚动在项目之间滚动。 可能吗?我还想知道在哪里可以找到默认的Flipview样式 (我正在使用C#/XAML) 谢谢。我采用了默认样式,并进行了修改 <Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Visible"/> <Setter Property="ScrollViewer.VerticalScrollBarVisibili

我想制作一个flipview,它允许使用鼠标滚动在项目之间滚动。 可能吗?我还想知道在哪里可以找到默认的Flipview样式

(我正在使用C#/XAML)


谢谢。

我采用了默认样式,并进行了修改

<Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Visible"/>
        <Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Hidden"/>
        <Setter Property="ScrollViewer.IsHorizontalRailEnabled" Value="True"/>
        <Setter Property="ScrollViewer.IsVerticalRailEnabled" Value="True"/>
        <Setter Property="ScrollViewer.IsHorizontalScrollChainingEnabled" Value="True"/>
        <Setter Property="ScrollViewer.IsVerticalScrollChainingEnabled" Value="True"/>
        <Setter Property="ScrollViewer.IsDeferredScrollingEnabled" Value="True"/>
        <Setter Property="ScrollViewer.BringIntoViewOnFocusChange" Value="False"/>


我看到了水平滚动查看器,但无法用鼠标滚动。

我相信Windows 8.1中的FlipView(尝试升级项目)默认情况下确实可以做到这一点。我用FlipView启动了一个新项目,它是开箱即用的。无论如何,您都应该升级项目库,因此请尝试升级。

有可能吗?你试过了吗?你好,我很好奇你有没有找到这样做的方法?