From ddc315e2c7537c8d5311787d639cd4b1cb2727ca Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Sun, 3 Aug 2025 17:27:38 +0200 Subject: [PATCH] Update MapBase.WPF.cs --- MapControl/WPF/MapBase.WPF.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MapControl/WPF/MapBase.WPF.cs b/MapControl/WPF/MapBase.WPF.cs index 021b3dd7..3fb8f612 100644 --- a/MapControl/WPF/MapBase.WPF.cs +++ b/MapControl/WPF/MapBase.WPF.cs @@ -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 } }