Files
better-genshin-impact/BetterGenshinImpact/Service/PageService.cs
辉鸭蛋 46ebdfc452 wpfui 4.0.0 (#1255)
* new INavigationAware, remove PageService

* fix run

* fix title bar

* override OnNavigatedTo

* try fix WindowStartupLocation
2025-03-13 00:33:31 +08:00

46 lines
1.3 KiB
C#

// using System;
// using System.Windows;
// using Wpf.Ui;
//
// namespace BetterGenshinImpact.Service;
//
// /// <summary>
// /// Service that provides pages for navigation.
// /// </summary>
// public class PageService : IPageService
// {
// /// <summary>
// /// Service which provides the instances of pages.
// /// </summary>
// private readonly IServiceProvider _serviceProvider;
//
// /// <summary>
// /// Creates new instance and attaches the <see cref="IServiceProvider"/>.
// /// </summary>
// public PageService(IServiceProvider serviceProvider)
// {
// _serviceProvider = serviceProvider;
// }
//
// /// <inheritdoc />
// public T? GetPage<T>() where T : class
// {
// if (!typeof(FrameworkElement).IsAssignableFrom(typeof(T)))
// {
// throw new InvalidOperationException("The page should be a WPF control.");
// }
//
// return (T?)_serviceProvider.GetService(typeof(T));
// }
//
// /// <inheritdoc />
// public FrameworkElement? GetPage(Type pageType)
// {
// if (!typeof(FrameworkElement).IsAssignableFrom(pageType))
// {
// throw new InvalidOperationException("The page should be a WPF control.");
// }
//
// return _serviceProvider.GetService(pageType) as FrameworkElement;
// }
// }