9 lines
255 B
C#
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);
|
|
}
|