using Avalonia.Interactivity;
namespace Avalonia.Controls
{
///
/// Provides data for the routed event.
///
public class DrawerClosingEventArgs : RoutedEventArgs
{
///
/// Initializes a new instance of the class.
///
/// The routed event associated with these event data.
public DrawerClosingEventArgs(RoutedEvent? routedEvent) : base(routedEvent) { }
///
/// Gets or sets a value indicating whether the closing should be cancelled.
///
public bool Cancel { get; set; }
}
}