master
cs 10 lines 329 Bytes
Raw
1 // Copyright (C) Microsoft Corporation. All rights reserved.
2
3 using Microsoft.UI.Xaml.Controls;
4
5 namespace WslSettings.Helpers;
6
7 public static class FrameExtensions
8 {
9 public static object? GetPageViewModel(this Frame frame) => frame?.Content?.GetType().GetProperty("ViewModel")?.GetValue(frame.Content, null);
10 }