| 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 NetworkingIntegrationPage : Page |
| 8 | { |
| 9 | public NetworkingIntegrationViewModel ViewModel |
| 10 | { |
| 11 | get; |
| 12 | } |
| 13 | |
| 14 | public NetworkingIntegrationPage() |
| 15 | { |
| 16 | ViewModel = App.GetService<NetworkingIntegrationViewModel>(); |
| 17 | InitializeComponent(); |
| 18 | } |
| 19 | } |