init
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user