namespace Caliburn.Micro.Core { using System; /// /// EventArgs sent during activation. /// public class ActivationEventArgs : EventArgs { /// /// Indicates whether the sender was initialized in addition to being activated. /// public bool WasInitialized; } }