mirror of
https://github.com/LanZhan-Harmony/WindowsMusicPlayer-TheUntamedMusicPlayer.git
synced 2026-05-06 11:10:16 +08:00
24 lines
420 B
C#
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();
|
|
}
|