// ----------------------------------------------------------------------- // // Copyright 2015 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Input { using Perspex.Interactivity; public class GotFocusEventArgs : RoutedEventArgs { /// /// Gets or sets a value indicating whether the control was focused by a keypress (e.g. /// the Tab key). /// public bool KeyboardNavigated { get; set; } } }