mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-01-20 15:40:16 +01:00
Update MapBase.WPF.cs
This commit is contained in:
parent
3e53afd79d
commit
ddc315e2c7
|
|
@ -142,7 +142,7 @@ namespace MapControl
|
|||
|
||||
centerAnimation.Completed += CenterAnimationCompleted;
|
||||
|
||||
BeginAnimation(CenterProperty, centerAnimation);
|
||||
BeginAnimation(CenterProperty, centerAnimation, HandoffBehavior.Compose);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -206,7 +206,7 @@ namespace MapControl
|
|||
|
||||
zoomLevelAnimation.Completed += ZoomLevelAnimationCompleted;
|
||||
|
||||
BeginAnimation(ZoomLevelProperty, zoomLevelAnimation);
|
||||
BeginAnimation(ZoomLevelProperty, zoomLevelAnimation, HandoffBehavior.Compose);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -265,7 +265,7 @@ namespace MapControl
|
|||
|
||||
headingAnimation.Completed += HeadingAnimationCompleted;
|
||||
|
||||
BeginAnimation(HeadingProperty, headingAnimation);
|
||||
BeginAnimation(HeadingProperty, headingAnimation, HandoffBehavior.SnapshotAndReplace); // don't compose
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue