26 lines
580 B
C#
26 lines
580 B
C#
using 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 : PubSubEvent<PageSelectionChangedArg> { }
|
|
|
|
public class PageSelectionChangedArg
|
|
{
|
|
public object Page { get; }
|
|
|
|
public int Count { get; }
|
|
|
|
public PageSelectionChangedArg(int count, object page)
|
|
{
|
|
Page = page;
|
|
Count = count;
|
|
}
|
|
}
|
|
}
|