18 lines
383 B
C#
18 lines
383 B
C#
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
/* Based on Windows UI Library
|
|||
|
|
Copyright(c) Microsoft Corporation.All rights reserved. */
|
|||
|
|
|
|||
|
|
// ReSharper disable once CheckNamespace
|
|||
|
|
namespace WPFluent.Controls;
|
|||
|
|
|
|||
|
|
public class NavigatedEventArgs : RoutedEventArgs
|
|||
|
|
{
|
|||
|
|
public NavigatedEventArgs(RoutedEvent routedEvent, object source) : base(routedEvent, source)
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public required object Page { get; init; }
|
|||
|
|
}
|