using Microsoft.Xaml.Behaviors;
namespace DTS.Common.Interactivity
{
public class InteractionRequestTrigger : EventTrigger
{
///
/// Specifies the name of the Event this EventTriggerBase is listening for.
///
/// This implementation always returns the Raised event name for ease of connection with .
protected override string GetEventName()
{
return "Raised";
}
}
}