mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-19 08:19:48 +08:00
* new INavigationAware, remove PageService * fix run * fix title bar * override OnNavigatedTo * try fix WindowStartupLocation
46 lines
1.3 KiB
C#
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;
|
|
// }
|
|
// } |