| 1 | // Copyright (C) Microsoft Corporation. All rights reserved. |
| 2 | |
| 3 | using Microsoft.UI.Xaml.Controls; |
| 4 | |
| 5 | namespace WslSettings.Contracts.Services; |
| 6 | |
| 7 | public interface INavigationViewService |
| 8 | { |
| 9 | IList<object>? MenuItems |
| 10 | { |
| 11 | get; |
| 12 | } |
| 13 | |
| 14 | object? SettingsItem |
| 15 | { |
| 16 | get; |
| 17 | } |
| 18 | |
| 19 | void Initialize(NavigationView navigationView); |
| 20 | |
| 21 | void UnregisterEvents(); |
| 22 | |
| 23 | NavigationViewItem? GetSelectedItem(Type pageType); |
| 24 | } |