如何拥有照片查看器样式页面?

时间:2013-06-28 22:43:51

标签: c# xaml windows-phone-8 windows-phone

我不知道我是否正确命名,但我有一个显示一排照片的应用程序。如果用户向左滑动,则全屏显示上一张图片,如果向右滑动则会出现全屏下一张图片,两者的动作与在Photo应用程序或PDF阅读器中查看图片完全相同。我以为我可以操纵全景控制来适应这个,但我无法全屏显示图片,并且顶部有标题的位置。

我该怎么做?任何提示

注意:此stackoverflow上的策略很烦人。有些类型的人可以投票关闭,或者说一些句子片段:你尝试了什么或你的代码在哪里。从基地关闭这个问题以获得良好的感觉。

这是要求指南有一种观看方式..我应该展示什么代码,如果不知道如何执行它?无论如何,我找到了答案,没有必要这样做。

1 个答案:

答案 0 :(得分:4)

我会告诉你我做了什么,也许你会发现它足够了。我想要一个全屏图像查看器,让我可以滑动到下一个(或上一个)图像,但是它会捕捉到图像而不是正常滚动。

我使用了禁用内部scrollViewer的全屏ListBox(请参阅XAML),然后使用一些附加的依赖项属性来获取内部scrollViewer的水平(和垂直)偏移的属性(因此我可以自己动画滚动)。我的实现涉及更多,因为我想缩放(然后平移)图像,但刚刚进入下一个图像的部分并不难。

免责声明:我从StackOverflow和其他网站上的几个来源获取了代码。我不记得我在哪里得到它们了,但我自己并没有想出这些想法。如果我知道在哪里给它,我会很乐意给予赞扬。

首先,创建一个名为ScrollViewerEx的新类:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;

namespace ImageViewer    
{
    public class ScrollViewerEx
    {
    public static double GetHOffset(ScrollViewer obj)
    {
        return (double)obj.GetValue(ScrollViewer.HorizontalOffsetProperty);
    }

    public static void SetHOffset(ScrollViewer obj, double value)
    {
        obj.SetValue(HOffsetProperty, value);
    }

    // Using a DependencyProperty as the backing store for HOffset.  This enables animation, styling, binding, etc...  
    public static readonly DependencyProperty HOffsetProperty =
        DependencyProperty.RegisterAttached("HOffset", typeof(double), typeof(ScrollViewerEx), new PropertyMetadata(new PropertyChangedCallback(OnHOffsetChanged)));


    private static void OnHOffsetChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
    {
        var scroll = sender as ScrollViewer;

        scroll.ScrollToHorizontalOffset((double)e.NewValue);
    }

    public static double GetVOffset(ScrollViewer obj)
    {
        return (double)obj.GetValue(ScrollViewer.VerticalOffsetProperty);
    }

    public static void SetVOffset(ScrollViewer obj, double value)
    {
        obj.SetValue(VOffsetProperty, value);
    }

    // Using a DependencyProperty as the backing store for VOffset.  This enables animation, styling, binding, etc...  
    public static readonly DependencyProperty VOffsetProperty =
        DependencyProperty.RegisterAttached("VOffset", typeof(double), typeof(ScrollViewerEx), new PropertyMetadata(new PropertyChangedCallback(OnVOffsetChanged)));


    private static void OnVOffsetChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
    {
        var scroll = sender as ScrollViewer;

        scroll.ScrollToVerticalOffset((double)e.NewValue);
    }
}  

}

好的,我们假设你有一个如下所示的列表框。在我的案例中,Images属性是一个名为PictureModel的类,里面有一个ImageSource。我没有显示我的ItemTemplate,只是将一个Image放在里面并将Source绑定到你的ImageSource。注意ListBox下面的Rectangle。我把所有触摸代码放在那里,因为当我使用缩放图像时,我的坐标系正在改变。使用矩形叠加使得我有所有触摸的标准屏幕坐标。你可能不需要这个。

    <ListBox ItemsSource="{Binding Images}"
             x:Name="listBox"
             ScrollViewer.HorizontalScrollBarVisibility="Disabled"
             ScrollViewer.VerticalScrollBarVisibility="Disabled"
             ScrollViewer.ManipulationMode="Control"
             Loaded="listBox_Loaded_1" 

                  >
        <ListBox.Resources>
            <Storyboard x:Name="ScrollStoryboard">
                <DoubleAnimation x:Name="AnimationH" Duration="0:0:0.5">
                    <DoubleAnimation.EasingFunction>
                        <CubicEase EasingMode="EaseInOut"/>
                    </DoubleAnimation.EasingFunction>
                </DoubleAnimation>
                <DoubleAnimation x:Name="AnimationV" Duration="0:0:0.5">
                    <DoubleAnimation.EasingFunction>
                        <CubicEase EasingMode="EaseInOut"/>
                    </DoubleAnimation.EasingFunction>
                </DoubleAnimation>
            </Storyboard>
        </ListBox.Resources>
        <ListBox.ItemContainerStyle>
            <StaticResource ResourceKey="ListBoxItemPivotStyle"/>
        </ListBox.ItemContainerStyle>
    </ListBox>
    <Rectangle Fill="Transparent"
               x:Name="TouchRectangle"
               ManipulationCompleted="Rectangle_ManipulationCompleted_1"
               ManipulationDelta="Rectangle_ManipulationDelta_1"
               ManipulationStarted="Rectangle_ManipulationStarted_1"/>

好的,另一个关键部分。确保将其放在页面的构造函数中。这使您可以为您的滚动查看器偏移更改设置动画。

Storyboard.SetTargetProperty(ScrollStoryboard.Children[0], new PropertyPath(ScrollViewerEx.HOffsetProperty));
Storyboard.SetTargetProperty(ScrollStoryboard.Children[1], new PropertyPath(ScrollViewerEx.VOffsetProperty));

获取ListBox内滚动查看器的永久引用:

private void listBox_Loaded_1(object sender, RoutedEventArgs e)
    {
        scrollviewer = GetVisualChild<ScrollViewer>(listBox);
    }

最后,处理操作事件。设置列表框滚动动画的关键是操作完成事件。我没有使用垂直偏移,只使用水平偏移。变量vm.Position是沿scrollviewer.horizo​​ntaloffset计算的位置。基本上,如果您在第5张图像上,则将屏幕宽度乘以4以获得水平偏移。

private void Rectangle_ManipulationCompleted_1(object sender, ManipulationCompletedEventArgs e)
{
    if (e.FinalVelocities.LinearVelocity.X > 2000)
        {

                if (ScrollStoryboard.GetCurrentState() != ClockState.Stopped)
                    ScrollStoryboard.Stop(); // ensure storyboard stopped after previous run  
                AnimationH.SetValue(DoubleAnimation.FromProperty, scrollviewer.HorizontalOffset);
                AnimationH.SetValue(DoubleAnimation.ToProperty, (double)vm.Position);
                Storyboard.SetTarget(ScrollStoryboard, scrollviewer);
                ScrollStoryboard.Begin();


        }
}

我希望这会有所帮助。就像我说的,除了从ListBox获得的内置UI虚拟化之外,我所做的全部实现还包括数据虚拟化。那和缩放。它还没准备好发布,但这会让你开始。