master
cs 25 lines 494 Bytes
Raw
1 // Copyright (C) Microsoft Corporation. All rights reserved.
2
3 using Microsoft.UI.Xaml.Controls;
4 using Microsoft.UI.Xaml.Navigation;
5
6 namespace WslSettings.Contracts.Services;
7
8 public interface INavigationService
9 {
10 event NavigatedEventHandler Navigated;
11
12 bool CanGoBack
13 {
14 get;
15 }
16
17 Frame? Frame
18 {
19 get; set;
20 }
21
22 bool NavigateTo(string pageKey, object? parameter = null, bool clearNavigation = false);
23
24 bool GoBack();
25 }