namespace XFEExtension.NetCore.WinUIHelper.Utilities;
///
/// 页面管理器
///
public static class PageManager
{
///
/// 页面定义字典
///
public static Dictionary PageDefinitions { get; set; } = [];
///
/// 当前页面实例字典
///
public static Dictionary CurrentPages { get; set; } = [];
///
/// 注册页面
///
/// 页面类型
/// 是否注册成功
public static bool RegisterPage(Type pageType) => PageDefinitions.TryAdd(pageType.FullName!, pageType);
///
/// 添加或者更新当前页面
///
/// 页面泛型
/// 当前页面对象
/// 添加/更新
public static bool AddOrUpdateCurrentPage(T page) where T : Page
{
var pageName = page.GetType().FullName!;
if (CurrentPages.TryAdd(pageName, page))
return true;
CurrentPages[pageName] = page;
return false;
}
}