mirror of
https://github.com/LanZhan-Harmony/WindowsMusicPlayer-TheUntamedMusicPlayer.git
synced 2026-05-06 19:20:18 +08:00
9 lines
270 B
C#
9 lines
270 B
C#
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace The_Untamed_Music_Player.Helpers;
|
|
|
|
public static class FrameExtensions
|
|
{
|
|
public static object? GetPageViewModel(this Frame frame) => frame?.Content?.GetType().GetProperty("ViewModel")?.GetValue(frame.Content, null);
|
|
}
|