diff --git a/Source/Sample Project/Showcase/FancyBalloon.xaml.cs b/Source/Sample Project/Showcase/FancyBalloon.xaml.cs index 78a6291..460a82a 100644 --- a/Source/Sample Project/Showcase/FancyBalloon.xaml.cs +++ b/Source/Sample Project/Showcase/FancyBalloon.xaml.cs @@ -59,11 +59,11 @@ namespace Samples /// /// By subscribing to the /// and setting the "Handled" property to true, we suppress the popup - /// from being closed in order to display the fade-out animation. + /// from being closed in order to display the custom fade-out animation. /// private void OnBalloonClosing(object sender, RoutedEventArgs e) { - e.Handled = true; + e.Handled = true; //suppresses the popup from being closed immediately isClosing = true; }