// -----------------------------------------------------------------------
//
// Copyright 2015 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Input
{
using Perspex.Interactivity;
///
/// Holds arguments for a .
///
public class GotFocusEventArgs : RoutedEventArgs
{
///
/// Gets or sets a value indicating how the change in focus occurred.
///
public NavigationMethod NavigationMethod { get; set; }
}
}