ITrigger.cs 308 B

123456789101112
  1. namespace Avalonia.Xaml.Interactivity;
  2. /// <summary>
  3. /// Interface implemented by all custom triggers.
  4. /// </summary>
  5. public interface ITrigger : IBehavior
  6. {
  7. /// <summary>
  8. /// Gets the collection of actions associated with the behavior.
  9. /// </summary>
  10. ActionCollection Actions { get; }
  11. }