2 changed files with 16 additions and 9 deletions
@ -0,0 +1,16 @@ |
|||
// 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 |
|||
{ |
|||
public class CancelableEventArgs : EventArgs |
|||
{ |
|||
public bool Cancel { get; set; } |
|||
|
|||
public CancelableEventArgs() |
|||
: base() |
|||
{ } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue