DeactivationEventArgs.cs 358 B

1234567891011121314
  1. namespace Caliburn.Micro.Core {
  2. using System;
  3. /// <summary>
  4. /// EventArgs sent during deactivation.
  5. /// </summary>
  6. public class DeactivationEventArgs : EventArgs {
  7. /// <summary>
  8. /// Indicates whether the sender was closed in addition to being deactivated.
  9. /// </summary>
  10. public bool WasClosed;
  11. }
  12. }