Files
ShrlAlgoToolkit/WPFluent/Controls/NavigationView/NavigatingCancelEventArgs.cs

20 lines
432 B
C#

// Based on Windows UI Library
// Copyright(c) Microsoft Corporation.All rights reserved.
// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
public class NavigatingCancelEventArgs : RoutedEventArgs
{
public NavigatingCancelEventArgs(RoutedEvent routedEvent, object source) : base(routedEvent, source)
{
}
public bool Cancel { get; set; }
public required object Page { get; init; }
}