// Copyright (c) The Perspex Project. All rights reserved. // Licensed under the MIT license. See licence.md file in the project root for full license information. namespace Perspex.Input { /// /// Defines a container in which the child controls can be navigated by keyboard. /// public interface INavigableContainer { /// /// Gets the next control in the specified direction. /// /// The movement direction. /// The control from which movement begins. /// The control. IInputElement GetControl(FocusNavigationDirection direction, IInputElement from); } }