From d2abe5238b4666ecc1e29d10432d21e68f612f11 Mon Sep 17 00:00:00 2001 From: Philipp Sumi Date: Sat, 16 Nov 2013 21:05:20 +0000 Subject: [PATCH] Improved inline documentation. git-svn-id: https://svn.evolvesoftware.ch/repos/evolve.net/WPF/NotifyIcon@178 9f600761-6f11-4665-b6dc-0185e9171623 --- Source/Sample Project/Showcase/FancyBalloon.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }