Files

17 lines
502 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
/// <summary>
/// The SetSaveButton event
/// </summary>
public class SetSaveButton : CompositePresentationEvent<SaveButtonUsability> { }
/// <summary>
/// The SaveButtonUsability is used by <see cref="ShowStatus">SetSaveButton</see> event to enable/disable the Save button.
/// </summary>
public class SaveButtonUsability
{
public bool IsUsable { get; set; }
}
}