init
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
using DTS.Common.Interface.RegionOfInterest;
|
||||
using Prism.Events;
|
||||
|
||||
namespace DTS.Common.Events.RegionOfInterest
|
||||
{
|
||||
public class RegionOfInterestChangedEvent : PubSubEvent<IRegionOfInterest> { }
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
using Prism.Events;
|
||||
using Prism.Regions;
|
||||
|
||||
namespace DTS.Common.Events.RegionOfInterest.RegionOfInterestChannels
|
||||
{
|
||||
public class RegionOfInterestChannelsSelectedEvent : PubSubEvent<RegionOfInterestChannelsSelectedEventArgs> { }
|
||||
|
||||
public class RegionOfInterestChannelsSelectedEventArgs
|
||||
{
|
||||
public string RegionOfInterestSuffix { get; private set; }
|
||||
public string[] ChannelNames { get; private set; }
|
||||
public long[] ChannelIds { get; private set; }
|
||||
|
||||
public object Consumer { get; private set; }
|
||||
public RegionOfInterestChannelsSelectedEventArgs(string roiSuffix, string[] selectedChannelNames, long[] selectedChannelIds, object o)
|
||||
{
|
||||
RegionOfInterestSuffix = roiSuffix;
|
||||
ChannelNames = selectedChannelNames;
|
||||
ChannelIds = selectedChannelIds;
|
||||
Consumer = o;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user