This repository has been archived on 2023-03-29. You can view files and clone it, but cannot push or open issues or pull requests.
Sic02/FrameworkLocal/UIClient/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;
}
}