This repository has been archived on 2024-01-02. You can view files and clone it, but cannot push or open issues or pull requests.
Sic06/FrameworkLocal/UIClient/Caliburn.Micro/Core/ActivationEventArgs.cs

14 lines
362 B
C#

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