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

14 lines
358 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
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;
}
}