• win10 UWP FlipView


    FlipView

    可以让用户逐个浏览的项目集合

            <FlipView Grid.Row="0" Height="100" Margin="10,10,10,10">
                <Image Source="Assets/QQ.png"/>
                <Image Source="Assets/搜狐.png"/>
                <Image Source="Assets/暴风影音.png"/>
                <Image Source="Assets/芒果.png"/>
                <Image Source="Assets/迅雷看看.png"/>
            </FlipView>

    这里写图片描述

    上下滚动

            <FlipView Grid.Row="0" Height="100" Margin="10,10,10,10">
                <Image Source="Assets/QQ.png"/>
                <Image Source="Assets/搜狐.png"/>
                <Image Source="Assets/暴风影音.png"/>
                <Image Source="Assets/芒果.png"/>
                <Image Source="Assets/迅雷看看.png"/>
                <FlipView.ItemsPanel>
                    <ItemsPanelTemplate>
                        <VirtualizingStackPanel Orientation="Vertical"/>
                    </ItemsPanelTemplate>
                </FlipView.ItemsPanel>
            </FlipView>

    自动

    FlipView x:Name=”xf”

    在MainPage.xaml.cs

                 DispatcherTimer time = new DispatcherTimer();
                time.Interval = new TimeSpan(0,0,1);           
                time.Tick += Time_Tick;
                time.Start();
            private void Time_Tick(object sender , object e)
            {
                int i = xf.SelectedIndex;
                i++;
                if (i >= xf.Items.Count)
                {
                    i = 0;
                }
                xf.SelectedIndex = i;
            }
  • 相关阅读:
    Struts2(一)
    MVC初识
    Ajax简述
    策略模式(Strategy)简介
    代理(Proxy)模式简介
    简单工厂模式--工厂方法模式(简介)
    设计模式简介
    面象对象设计原则简介
    Java从零开始学四十一(反射简述二)
    Hibernate(十五)注解
  • 原文地址:https://www.cnblogs.com/lindexi/p/12087689.html
Copyright © 2020-2023  润新知