Files
WindowsMusicPlayer-TheUntam…/The Untamed Music Player/Contracts/Services/INavigationService.cs
2024-08-27 15:07:06 +08:00

24 lines
420 B
C#

using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Navigation;
namespace The_Untamed_Music_Player.Contracts.Services;
public interface INavigationService
{
event NavigatedEventHandler Navigated;
bool CanGoBack
{
get;
}
Frame? Frame
{
get; set;
}
bool NavigateTo(string pageKey, object? parameter = null, bool clearNavigation = false);
bool GoBack();
}