Add OnStart hook for when Stylet starts up, and rename the existing hooks to avoid confusion

This commit is contained in:
Antony Male 2014-07-23 13:24:12 +01:00
parent e611367ab5
commit b254f92fe8
3 changed files with 17 additions and 10 deletions

View File

@ -38,14 +38,14 @@ namespace Stylet
{
this.Application.Startup += (o, e) =>
{
this.OnStartup(o, e);
this.OnApplicationStartup(o, e);
if (autoStart)
this.Start();
};
// Make life nice for the app - they can handle these by overriding Bootstrapper methods, rather than adding event handlers
this.Application.Exit += OnExit;
this.Application.DispatcherUnhandledException += OnUnhandledExecption;
this.Application.Exit += OnApplicationExit;
this.Application.DispatcherUnhandledException += OnApplicationUnhandledExecption;
}
}
@ -73,6 +73,8 @@ namespace Stylet
View.ViewManager = IoC.Get<IViewManager>();
this.OnStart();
if (autoLaunch && !Execute.InDesignMode)
this.Launch();
}
@ -133,20 +135,25 @@ namespace Stylet
}
/// <summary>
/// Hook called on application startup
/// Hook called on application startup. This occurs before Start() is called (if autoStart is true)
/// </summary>
protected virtual void OnStartup(object sender, StartupEventArgs e) { }
protected virtual void OnApplicationStartup(object sender, StartupEventArgs e) { }
/// <summary>
/// Hook called when the application has started, and Stylet is fully initialised
/// </summary>
protected virtual void OnStart() { }
/// <summary>
/// Hook called on application exit
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected virtual void OnExit(object sender, ExitEventArgs e) { }
protected virtual void OnApplicationExit(object sender, ExitEventArgs e) { }
/// <summary>
/// Hook called on an unhandled exception
/// </summary>
protected virtual void OnUnhandledExecption(object sender, DispatcherUnhandledExceptionEventArgs e) { }
protected virtual void OnApplicationUnhandledExecption(object sender, DispatcherUnhandledExceptionEventArgs e) { }
}
}

View File

@ -11,9 +11,9 @@ namespace StyletIntegrationTests
{
public class Bootstrapper : Bootstrapper<ShellViewModel>
{
protected override void OnUnhandledExecption(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
protected override void OnApplicationUnhandledExecption(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
{
base.OnUnhandledExecption(sender, e); // Calling this just to trigger some code coverage
base.OnApplicationUnhandledExecption(sender, e); // Calling this just to trigger some code coverage
var message = e.Exception.Message;
if (e.Exception is TargetInvocationException)
message = e.Exception.InnerException.Message;

View File

@ -56,7 +56,7 @@ namespace StyletUnitTests
}
public bool OnExitCalled;
protected override void OnExit(object sender, ExitEventArgs e)
protected override void OnApplicationExit(object sender, ExitEventArgs e)
{
this.OnExitCalled = true;
}