mirror of https://github.com/AMT-Cheif/Stylet.git
Add OnStart hook for when Stylet starts up, and rename the existing hooks to avoid confusion
This commit is contained in:
parent
e611367ab5
commit
b254f92fe8
|
@ -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) { }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue