CommandEventArgs.cs 341 B

123456789101112131415
  1. #nullable enable
  2. using System.ComponentModel;
  3. namespace Terminal.Gui;
  4. /// <summary>
  5. /// Event arguments for <see cref="Command"/> events.
  6. /// </summary>
  7. public class CommandEventArgs : CancelEventArgs
  8. {
  9. /// <summary>
  10. /// The context for the command.
  11. /// </summary>
  12. public CommandContext Context { get; init; }
  13. }