ManipulationDeltaイベントとManipulationStartedイベント(画像コントロール上)に接続することで、ピンチズームとパンを実装することができました。
private void image_OnManipulationDelta(object sender, ManipulationDeltaEventArgs e)
{
var transform = (CompositeTransform)image.RenderTransform;
// pan
transform.TranslateX = _translationX + e.CumulativeManipulation.Translation.X;
transform.TranslateY = _translationY + e.CumulativeManipulation.Translation.Y;
// zoom
if (e.PinchManipulation != null)
{
transform.CenterX = e.PinchManipulation.Original.Center.X;
transform.CenterY = e.PinchManipulation.Original.Center.Y;
transform.ScaleX = _scaleX * e.PinchManipulation.CumulativeScale;
transform.ScaleY = _scaleY * e.PinchManipulation.CumulativeScale;
}
}
private void image_OnManipulationStarted(object sender, ManipulationStartedEventArgs e)
{
// the user has started manipulating the screen, set starting points
var transform = (CompositeTransform)image.RenderTransform;
_scaleX = transform.ScaleX;
_scaleY = transform.ScaleY;
_translationX = transform.TranslateX;
_translationY = transform.TranslateY;
}
しかし、他のWindows Phone UIの滑らかさに比べると、非常に穏やかで硬い感じがします。ムーブメントに慣性はありません。
動きをよりスムーズにする方法はありますか?アニメーションやストーリーボードを使用する方法はありますか?少なくともスムーズなパンを実現するためにScrollViewを使用しようとしましたが、ManipulationDeltaイベントが正しく発生しません。