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;
            }
    <script type="text/javascript"> $(function () { $('pre.prettyprint code').each(function () { var lines = $(this).text().split(' ').length; var $numbering = $('<ul/>').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('<li/>').text(i)); }; $numbering.fadeIn(1700); }); }); </script>
  • 相关阅读:
    深入浅出HTTP请求(转自http://www.cnblogs.com/yin-jingyu/archive/2011/08/01/2123548.html)
    IOS定位
    webView(简单的浏览器)
    Get&Post登录
    IOS多媒体
    IOS VFL屏幕自适应
    IOS中在自定义控件(非视图控制器)的视图跳转中 代理方法与代码块的比较
    单例设计的定义
    动画
    多线程
  • 原文地址:https://www.cnblogs.com/lindexi/p/6949715.html
Copyright © 2011-2022 走看看