| 1 | // Copyright (C) Microsoft Corporation. All rights reserved. |
| 2 | |
| 3 | using Microsoft.UI.Xaml.Controls; |
| 4 | using WslSettings.ViewModels.Settings; |
| 5 | |
| 6 | namespace WslSettings.Views.Settings; |
| 7 | |
| 8 | public sealed partial class AboutPage : Page |
| 9 | { |
| 10 | public AboutViewModel ViewModel |
| 11 | { |
| 12 | get; |
| 13 | } |
| 14 | |
| 15 | public AboutPage() |
| 16 | { |
| 17 | ViewModel = App.GetService<AboutViewModel>(); |
| 18 | InitializeComponent(); |
| 19 | } |
| 20 | } |