// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Input { public interface IKeyboardNavigation { bool MoveNext(IInputElement element); bool MovePrevious(IInputElement element); } }