using Avalonia.Automation;
using Avalonia.Automation.Peers;
using Avalonia.Controls.Primitives;
namespace Avalonia.Controls
{
///
/// A check box control.
///
public class CheckBox : ToggleButton
{
static CheckBox()
{
AutomationProperties.ControlTypeOverrideProperty.OverrideDefaultValue(AutomationControlType.CheckBox);
}
}
}