Files
DP44/Common/DTS.CommonCore/.svn/pristine/f2/f2cd5a8d10420f39a973b11dbad33ec55d517795.svn-base

22 lines
823 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
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;
}
}
}