Windows通用应用程序的轮播控件

时间:2015-10-01 11:30:30

标签: wpf xaml windows-phone win-universal-app uwp

有没有办法制作类似旋转木马的控件,你可以无限滑动来滚动项目?

我已经看到有一个CarouselPanel,但是我无法使用它:它会导致一个丑陋的错误消息(详见下面)

编辑:我在我的XAML中试过这个

<ItemsControl>
    <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
            <CarouselPanel />
        </ItemsPanelTemplate>
    </ItemsControl.ItemsPanel>
    <Button Content="Hi" />
    <Button Content="Hi" />
    <Button Content="Hi" />
</ItemsControl>

如果你将它运行到一个Page中,你将会收到一条未处理的异常:

  

异常= {“未指定的错误\ r \ n \ r \ n \ n您正在使用的面板   控件不允许作为控件的ItemsPanel。“}

1 个答案:

答案 0 :(得分:1)

这个控件没有循环,但我确信,让它循环不需要那么多工作。但它是一个很好的Carousel控件

http://blogs.u2u.be/diederik/post/2015/08/23/A-CoverFlow-control-for-the-Universal-Windows-Platform.aspx