using System;
using Avalonia.Interactivity;
namespace Avalonia.Input
{
///
///
///
internal interface IClickableControl
{
event EventHandler Click;
void RaiseClick();
///
/// Gets a value indicating whether this control and all its parents are enabled.
///
bool IsEffectivelyEnabled { get; }
}
}