3

我创建了一个带有单页和翻转视图的简单 Windows 8 应用程序。我的目标是浏览一组图像。Microsoft 建议对具有大量图像的图像库使用上下文指示器(我有 25 张照片)。

所以对于初学者来说:我希望 Flipview 是满足我需求的正确工具?

以及如何将上下文指示器添加到现有的翻转视图?到目前为止,我将翻转视图添加到 xaml 文件中:

<FlipView x:Name="flipView"  Grid.Row="1" VerticalAlignment="Top" Background="Black"/>

我还在 C# 中添加了一些图像:

ImageBrush brush1 = new ImageBrush();
brush1.ImageSource = new BitmapImage(new Uri("ms-appx:///Assets/gallery/IMG_0001.jpg"));

FlipViewItem flipvw1 = new FlipViewItem();
flipvw1.Background = brush1;

flipView.Items.Add(flipvw1);

ETC...

4

1 回答 1

4

查看这篇描述如何实现的博客文章:

http://blogs.u2u.be/diederik/post/2012/08/24/A-CXAML-FlipView-Context-Indicator-for-Windows-8.aspx

Callisto 还包括您可以从 NuGet 获取的实现:

https://github.com/timheuer/callisto/blob/master/src/Callisto/Controls/FlipViewIndicator/FlipViewIndicator.cs

于 2013-02-25T21:47:38.330 回答