zoukankan      html  css  js  c++  java
  • 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;
            }
  • 相关阅读:
    14.3
    14.2
    14.1
    第14章 抽象类和接口
    13.5
    JAVA异常处理
    12.9
    12.7
    vs 常用快捷键
    click()和onclick()的区别
  • 原文地址:https://www.cnblogs.com/lindexi/p/12087688.html
Copyright © 2011-2022 走看看