ActivationEventArgs.cs 362 B

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