Method | Description | |
---|---|---|
Bootstrapper ( ) : System |
Creates an instance of the bootstrapper.
|
Method | Description | |
---|---|---|
BuildUp ( object instance ) : void |
Override this to provide an IoC specific implementation.
|
|
Configure ( ) : void |
Override to configure the framework and setup your IoC container.
|
|
DisplayRootView ( ) : void |
Override to display your UI at startup.
|
|
GetAllInstances ( |
Override this to provide an IoC specific impelentation
|
|
GetInstance ( |
Override this to provide an IoC specific implementation.
|
|
OnExit ( object sender, |
Override this to add custom behavior on exit.
|
|
OnStartup ( object sender, System.Windows.StartupEventArgs e ) : void |
Override this to add custom behavior to execute after the application starts.
|
|
OnUnhandledException ( object sender, System.Windows.ApplicationUnhandledExceptionEventArgs e ) : void |
Override this to add custom behavior for unhandled exceptions.
|
|
OnUnhandledException ( object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e ) : void |
Override this to add custom behavior for unhandled exceptions.
|
|
PrepareApplication ( ) : void |
Provides an opportunity to hook into the application object.
|
|
SelectAssemblies ( ) : IEnumerable |
Override to tell the framework where to find assemblies to inspect for views, etc.
|
protected BuildUp ( object instance ) : void | ||
instance | object | The instance to perform injection on. |
return | void |
protected GetAllInstances ( |
||
service | The service to locate. | |
return | IEnumerable |
protected GetInstance ( |
||
service | The service to locate. | |
key | string | The key to locate. |
return | object |
protected OnExit ( object sender, |
||
sender | object | The sender. |
e | The event args. | |
return | void |
protected OnStartup ( object sender, System.Windows.StartupEventArgs e ) : void | ||
sender | object | The sender. |
e | System.Windows.StartupEventArgs | The args. |
return | void |
protected OnUnhandledException ( object sender, System.Windows.ApplicationUnhandledExceptionEventArgs e ) : void | ||
sender | object | The sender. |
e | System.Windows.ApplicationUnhandledExceptionEventArgs | The event args. |
return | void |
protected OnUnhandledException ( object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e ) : void | ||
sender | object | The sender. |
e | System.Windows.Threading.DispatcherUnhandledExceptionEventArgs | The event args. |
return | void |