namespace Avalonia.Xaml.Interactivity; /// /// Interface implemented by all custom triggers. /// public interface ITrigger : IBehavior { /// /// Gets the collection of actions associated with the behavior. /// ActionCollection Actions { get; } }