CancelRoutedEventArgs.cs 264 B

123456789101112
  1. using System.Windows;
  2. namespace HandyControl.Data;
  3. public class CancelRoutedEventArgs : RoutedEventArgs
  4. {
  5. public CancelRoutedEventArgs(RoutedEvent routedEvent, object source) : base(routedEvent, source)
  6. {
  7. }
  8. public bool Cancel { get; set; }
  9. }