// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Controls
{
using Perspex.Input;
///
/// Defines a panel in which the child controls can be navigated by keyboard.
///
public interface INavigablePanel
{
///
/// Gets the next control in the specified direction.
///
/// The movement direction.
/// The control from which movement begins.
/// The control.
IControl GetControl(FocusNavigationDirection direction, IControl from);
}
}