Rename StyletIocBootstrapper to StyletIocBootstrapperBase

This commit is contained in:
Antony Male 2021-02-28 11:37:08 +00:00
parent 8684dc067f
commit fb40c3ff0c
2 changed files with 3 additions and 3 deletions

View File

@ -9,10 +9,10 @@ namespace Stylet
/// Bootstrapper to be extended by any application which wants to use StyletIoC (the default) /// Bootstrapper to be extended by any application which wants to use StyletIoC (the default)
/// </summary> /// </summary>
/// <remarks> /// <remarks>
/// If you don't have a root ViewModel, you might prefer to override <see cref="StyletIoCBootstrapper"/> /// If you don't have a root ViewModel, you might prefer to override <see cref="StyletIoCBootstrapperBase"/>
/// </remarks> /// </remarks>
/// <typeparam name="TRootViewModel">Type of the root ViewModel. This will be instantiated and displayed</typeparam> /// <typeparam name="TRootViewModel">Type of the root ViewModel. This will be instantiated and displayed</typeparam>
public abstract class Bootstrapper<TRootViewModel> : StyletIoCBootstrapper where TRootViewModel : class public abstract class Bootstrapper<TRootViewModel> : StyletIoCBootstrapperBase where TRootViewModel : class
{ {
private TRootViewModel _rootViewModel; private TRootViewModel _rootViewModel;

View File

@ -13,7 +13,7 @@ namespace Stylet
/// to display. If you don't want to show a window on startup, override <see cref="BootstrapperBase.Launch"/> /// to display. If you don't want to show a window on startup, override <see cref="BootstrapperBase.Launch"/>
/// but don't call <see cref="BootstrapperBase.DisplayRootView(object)"/>. /// but don't call <see cref="BootstrapperBase.DisplayRootView(object)"/>.
/// </remarks> /// </remarks>
public abstract class StyletIoCBootstrapper : BootstrapperBase public abstract class StyletIoCBootstrapperBase : BootstrapperBase
{ {
/// <summary> /// <summary>
/// Gets or sets the Bootstrapper's IoC container. This is created after ConfigureIoC has been run. /// Gets or sets the Bootstrapper's IoC container. This is created after ConfigureIoC has been run.