// -----------------------------------------------------------------------
//
// Copyright 2015 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Input
{
///
/// Defines the method by which a focus change occurred.
///
public enum NavigationMethod
{
///
/// The focus was changed by an unspecified method, e.g. calling
/// .
///
Unspecified,
///
/// The focus was changed by the user tabbing between control.
///
Tab,
///
/// The focus was changed by the user pressing a directional navigation key.
///
Directional,
///
/// The focus was changed by a pointer click.
///
Pointer,
}
}