master
cs 19 lines 427 Bytes
Raw
1 // Copyright (C) Microsoft Corporation. All rights reserved.
2
3 using Microsoft.UI.Xaml.Controls;
4 using WslSettings.ViewModels.OOBE;
5 namespace WslSettings.Views.OOBE;
6
7 public sealed partial class GeneralPage : Page
8 {
9 public GeneralViewModel ViewModel
10 {
11 get;
12 }
13
14 public GeneralPage()
15 {
16 ViewModel = App.GetService<GeneralViewModel>();
17 InitializeComponent();
18 }
19 }