File: System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindowClosingRoutedEventArgs.cs
Project: ndp\cdf\src\NetFx40\Tools\System.Activities.Presentation.csproj (System.Activities.Presentation)
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//---------------------------------------------------------------
 
namespace System.Activities.Presentation.View
{
    using System.Windows;
    using System.Runtime;
 
    [Fx.Tag.XamlVisible(false)]
    sealed class ExtensionWindowClosingRoutedEventArgs : RoutedEventArgs
    {
        internal ExtensionWindowClosingRoutedEventArgs(RoutedEvent routedEvent, object source)
            : base(routedEvent, source)
        {
        }
 
        public bool Cancel
        {
            get;
            set;
        }
    }
}