mirror of https://github.com/AMT-Cheif/Stylet.git
Rename StyletIocBootstrapper to StyletIocBootstrapperBase
This commit is contained in:
parent
8684dc067f
commit
fb40c3ff0c
|
@ -9,10 +9,10 @@ namespace Stylet
|
|||
/// Bootstrapper to be extended by any application which wants to use StyletIoC (the default)
|
||||
/// </summary>
|
||||
/// <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>
|
||||
/// <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;
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ namespace Stylet
|
|||
/// 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)"/>.
|
||||
/// </remarks>
|
||||
public abstract class StyletIoCBootstrapper : BootstrapperBase
|
||||
public abstract class StyletIoCBootstrapperBase : BootstrapperBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the Bootstrapper's IoC container. This is created after ConfigureIoC has been run.
|
Loading…
Reference in New Issue