手机
当前位置:查字典教程网 >操作系统 >Windows系列 >Windows 8技巧:Windows 8中FlipView的使用技巧介绍
Windows 8技巧:Windows 8中FlipView的使用技巧介绍
摘要:FlipView控件类似于翻页控件,并且是现成的翻页按钮,你只需要为其增加数据项即可。本文讲述两种方式的FlipView项目和展示。一:直接...

FlipView控件类似于翻页控件,并且是现成的翻页按钮,你只需要为其增加数据项即可。本文讲述两种方式的FlipView项目和展示。

一:直接前台FlipViewItem

<FlipView>

<FlipViewItem>

<Image Stretch="Uniform" Source="http://imgcache.qq.com/club/item/wallpic/items/2/3802/760_300_3802.jpg"/>

</FlipViewItem>

<FlipViewItem>

<Image Stretch="Uniform" Source="http://imgcache.qq.com/club/item/wallpic/items/3/4023/c_760_300_4023.jpg"/>

</FlipViewItem>

<FlipViewItem>

<Image Stretch="Uniform" Source="http://imgcache.qq.com/club/item/wallpic/items/3/3673/c_760_300_3673.jpg"/>

</FlipViewItem>

<FlipViewItem>

<Image Stretch="Uniform" Source="http://imgcache.qq.com/club/item/wallpic/items/7/4017/c_760_300_4017.jpg"/>

</FlipViewItem>

<FlipViewItem>

<Image Stretch="Uniform" Source="http://imgcache.qq.com/club/item/wallpic/items/2/3972/c_760_300_3972.jpg"/>

</FlipViewItem>

</FlipView>

效果如下:

Windows 8技巧:Windows 8中FlipView的使用技巧介绍1

二:前台设置DataTemplate,后台实体集方式添加数据项。

<FlipView Name="fvShow" Margin="100">

<FlipView.ItemTemplate>

<DataTemplate>

<Grid>

<Grid.Background>

<ImageBrush Stretch="Uniform" ImageSource="{Binding ImgUrl}"/>

</Grid.Background>

<TextBlock Height="30" VerticalAlignment="Top" HorizontalAlignment="Left"

Margin="180 300 0 0" FontSize="20" Foreground="Blue" Text="{Binding ImgName}"/>

<TextBlock Height="30" VerticalAlignment="Top" HorizontalAlignment="Left"

Margin="180 350 0 0" FontSize="20" 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 = "http://imgcache.qq.com/club/item/wallpic/items/2/3922/760_300_3922.jpg" });

list.Add(new ImgModel() { ImgName = "名字:上海春景", ImgAddr = "地址:上海市", ImgUrl = "http://imgcache.qq.com/club/item/wallpic/items/7/3147/760_300_3147.jpg" });

list.Add(new ImgModel() { ImgName = "名字:天津秋景", ImgAddr = "地址:天津市", ImgUrl = "http://imgcache.qq.com/club/item/wallpic/items/6/3966/c_760_300_3966.jpg" });

list.Add(new ImgModel() { ImgName = "名字:海南夏景", ImgAddr = "地址:海南市", ImgUrl = "http://imgcache.qq.com/club/item/wallpic/items/5/3695/760_300_3695.jpg" });

list.Add(new ImgModel() { ImgName = "名字:成都风景", ImgAddr = "地址:成都市", ImgUrl = "http://imgcache.qq.com/club/item/wallpic/items/8/2518/760_300_2518.jpg" });

return list;

}

}

看此方式的效果如下:

Windows 8技巧:Windows 8中FlipView的使用技巧介绍2

最后如需源码请点击Win8FlipView_jb51net 下载。

【Windows 8技巧:Windows 8中FlipView的使用技巧介绍】相关文章:

升级Win10周年更新后系统遭冻结怎么解决?

windows7怎么激活 windows7旗舰版激活密钥教程

Win10预览版14328中通知提醒功能的单重使用方法

微软推送Win10 Mobile预览版14342.1004慢速版 面向开放者预览用户

Windows系统中错误报告功能的启用方法

Win10怎么设置彩色主题栏?

Win10玩lol时提示“丢失d3dx9_39.dll”的解决方法

Win10 PC创新者更新慢速预览版14965今日推送

Win10系统桌面转制UWP应用介绍

Win10一周年更新预览版中怎么使用Linux Bash命令?

精品推荐
分类导航