Files
DP44/Common/DTS.CommonCore/.svn/pristine/c3/c3291afa35ca40153bf6a83862abd33eea5e0a57.svn-base

26 lines
615 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
/// <summary>
/// Event to inform app that it should mark itself busy or available
/// </summary>
/// <remarks>
///
/// </remarks>
public class PageSelectionChanged : CompositePresentationEvent<PageSelectionChangedArg> { }
public class PageSelectionChangedArg
{
public object Page { get; }
public int Count { get; }
public PageSelectionChangedArg(int count, object page)
{
Page = page;
Count = count;
}
}
}