使用ScrollViewer进行缩放

时间:2013-11-22 15:26:23

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

我在MVVM环境中使用ScrollViewer来浏览欧洲地图。但是当我使用ScrollViewer时,deltaScale for manipulationDeltaEventArgs.Pinchmanipulation不起作用。无论如何,DeltaScale都保持一个。我试着看一下Pinchmanipulation的Current和Original,它们是一样的。那么有人可以帮我设置滚动查看器吗?

manipDelta是:

public void Zoom(ManipulationDeltaEventArgs e)
    {
        if (e.PinchManipulation == null)
        {
            return;
        }



    }

1 个答案:

答案 0 :(得分:0)

我认为scrollviewer不支持在Windows Phone 8中进行缩放。只有Windows应用商店应用才能立即执行此操作。