终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CancelRoutedEventArgs.cs 278 B

2 vuotta sitten
123456789101112
  1. using System.Windows;
  2. namespace BPASmartClient.MilkWithTea.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. }