| 1234567891011121314151617181920 |
- // Copyright (c) The Avalonia Project. All rights reserved.
- // Licensed under the MIT license. See licence.md file in the project root for full license information.
- using System;
- namespace Avalonia.Interactivity
- {
- internal delegate void HandlerInvokeSignature(Delegate baseHandler, object sender, RoutedEventArgs args);
- internal class EventSubscription
- {
- public HandlerInvokeSignature InvokeAdapter { get; set; }
- public Delegate Handler { get; set; }
- public RoutingStrategies Routes { get; set; }
- public bool AlsoIfHandled { get; set; }
- }
- }
|