WIn_RustTools/RustTools/Helpers/FrameExtensions.cs
2024-07-14 19:24:10 +08:00

9 lines
255 B
C#

using Microsoft.UI.Xaml.Controls;
namespace RustTools.Helpers;
public static class FrameExtensions
{
public static object? GetPageViewModel(this Frame frame) => frame?.Content?.GetType().GetProperty("ViewModel")?.GetValue(frame.Content, null);
}