// 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.
using Perspex.Interactivity;
namespace Perspex.Input
{
///
/// 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; }
}
}