Sic.Framework/MECF.Framework.UI.Client/Caliburn.Micro/Core/DeactivationEventArgs.cs

14 lines
358 B
C#

namespace Caliburn.Micro.Core {
using System;
/// <summary>
/// EventArgs sent during deactivation.
/// </summary>
public class DeactivationEventArgs : EventArgs {
/// <summary>
/// Indicates whether the sender was closed in addition to being deactivated.
/// </summary>
public bool WasClosed;
}
}