PreviewInvokeEventArgs.cs 150 B

12345678
  1. using System;
  2. namespace HandyControl.Interactivity;
  3. public class PreviewInvokeEventArgs : EventArgs
  4. {
  5. public bool Cancelling { get; set; }
  6. }