位置: 编程技术 - 正文
推荐整理分享Windows 8技巧:Windows 8中FlipView的使用技巧介绍(windows8使用教程),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:电脑windows8怎么样,win10win8,window八,windows 8whql,windows8使用技巧,windows 8,windows 8怎么样,windows 8 1,内容如对您有帮助,希望把文章链接给更多的朋友!
FlipView控件类似于翻页控件,并且是现成的翻页按钮,你只需要为其增加数据项即可。本文讲述两种方式的FlipView项目和展示。
一:直接前台FlipViewItem复制代码代码如下:<FlipView> <FlipViewItem> <Image Stretch="Uniform" Source=" </FlipViewItem> <FlipViewItem> <Image Stretch="Uniform" Source=" </FlipViewItem> <FlipViewItem> <Image Stretch="Uniform" Source=" </FlipViewItem> <FlipViewItem> <Image Stretch="Uniform" Source=" </FlipViewItem> <FlipViewItem> <Image Stretch="Uniform" Source=" </FlipViewItem> </FlipView>
效果如下:
二:前台设置DataTemplate,后台实体集方式添加数据项。复制代码代码如下:<FlipView Name="fvShow" Margin=""> <FlipView.ItemTemplate> <DataTemplate> <Grid> <Grid.Background> <ImageBrush Stretch="Uniform" ImageSource="{Binding ImgUrl}"/> </Grid.Background> <TextBlock Height="" VerticalAlignment="Top" HorizontalAlignment="Left" Margin=" 0 0" FontSize="" Foreground="Blue" Text="{Binding ImgName}"/> <TextBlock Height="" VerticalAlignment="Top" HorizontalAlignment="Left" Margin=" 0 0" FontSize="" Foreground="Blue" Text="{Binding ImgAddr}"/> </Grid> </DataTemplate> </FlipView.ItemTemplate> </FlipView>复制代码代码如下:/// <summary> /// 可用于自身或导航至 Frame 内部的空白页。 /// </summary> public sealed partial class MainPage : Page { public MainPage() { this.InitializeComponent(); this.fvShow.ItemsSource = ImgModel.GetImgData(); }</p><p> /// <summary> /// 在此页将要在 Frame 中显示时进行调用。 /// </summary> /// <param name="e">描述如何访问此页的事件数据。Parameter /// 属性通常用于配置页。</param> protected override void OnNavigatedTo(NavigationEventArgs e) { } }</p><p> /// <summary> /// 图片实体 /// </summary> public class ImgModel { /// <summary> /// 图片名字 /// </summary> public string ImgName { get; set; }</p><p> /// <summary> /// 图片地址 /// </summary> public string ImgAddr { get; set; }</p><p> /// <summary> /// 图片URL /// </summary> public string ImgUrl { get; set; }</p><p> public static List<ImgModel> GetImgData() { List<ImgModel> list = new List<ImgModel>(); list.Add(new ImgModel() { ImgName = "名字:北京冬景", ImgAddr = "地址:北京市", ImgUrl = " }); list.Add(new ImgModel() { ImgName = "名字:上海春景", ImgAddr = "地址:上海市", ImgUrl = " }); list.Add(new ImgModel() { ImgName = "名字:天津秋景", ImgAddr = "地址:天津市", ImgUrl = " }); list.Add(new ImgModel() { ImgName = "名字:海南夏景", ImgAddr = "地址:海南市", ImgUrl = " }); list.Add(new ImgModel() { ImgName = "名字:成都风景", ImgAddr = "地址:成都市", ImgUrl = " }); return list; } }
看此方式的效果如下:
最后如需源码请点击 Win8FlipView_gimoonet 下载。
Windows 8技巧:Windows 8的基本变换和矩阵变换以及AppBar应用程序栏的使用 在Windows8中有几种基本变换和矩阵变换和Silverlight中的使用方法都是一样。包括:RotateTransform:旋转变换ScaleTransform:缩放变换SkewTransform:倾斜变换Translate
Windows 8技巧:Windows 8 中的Toast Tile Badge通知的使用方法 在Windows8中有三种通知的方式及时提醒用户,它们分别是Toast,Tile,BadgeToast:是在应用程序中及时弹出的提醒通知。Tile:是磁贴通知,用于Metro界面中的应
Windows 8技巧:关于windows 8的文件管理 File创建和String Stream Buffer方式读写的 在本文中我们将学习Windows8中的文件创建和多种读写方式以及设置文档库访问权限和文件类型的访问。当然我们需要做以下准备工作:首先:设置程序允
标签: windows8使用教程
本文链接地址:https://www.jiuchutong.com/biancheng/363782.html 转载请保留说明!上一篇:Windows 8技巧:Windows 8 中Slider控件与ToggleSwitch控件的使用方法(window八)
下一篇:Windows 8技巧:Windows 8的基本变换和矩阵变换以及AppBar应用程序栏的使用 (window八)
友情链接: 武汉网站建设