22 lines
823 B
C#
22 lines
823 B
C#
using Microsoft.Practices.Prism.Events;
|
|
using Microsoft.Practices.Prism.Regions;
|
|
|
|
namespace DTS.Common.Events.RegionOfInterest.RegionOfInterestChannels
|
|
{
|
|
public class RegionOfInterestChannelsSelectedEvent : CompositePresentationEvent<RegionOfInterestChannelsSelectedEventArgs> { }
|
|
|
|
public class RegionOfInterestChannelsSelectedEventArgs
|
|
{
|
|
public string RegionOfInterestSuffix { get; private set; }
|
|
public string[] ChannelNames { get; private set; }
|
|
|
|
public object Consumer { get; private set; }
|
|
public RegionOfInterestChannelsSelectedEventArgs(string roiSuffix, string[] selectedChannelNames, object o)
|
|
{
|
|
RegionOfInterestSuffix = roiSuffix;
|
|
ChannelNames = selectedChannelNames;
|
|
Consumer = o;
|
|
}
|
|
}
|
|
}
|