Method | Description | |
---|---|---|
MvvmApplication ( ) : System.Threading.Tasks |
Initializesa a new MvvmApplication instance.
|
Method | Description | |
---|---|---|
OnActivated ( IActivatedEventArgs eventArguments ) : void |
Gets called when the application is being activated any other way that the normal way.
|
|
OnActivatedAsync ( IActivatedEventArgs eventArguments ) : System.Threading.Tasks.Task |
Gets called when the app was activated by the user.
|
|
OnLaunched ( |
Gets callen wehn the applicaiton is being activated via a launch.
|
|
OnResumingAsync ( ) : System.Threading.Tasks.Task |
Gets called when the application is being resumed.
|
|
OnSuspendingAsync ( ) : System.Threading.Tasks.Task |
Gets called when the app is being suspended. Can be used to save the current application state.
|
|
OnUnhandledExceptionAsync ( |
Gets called if an exception was thrown that was not handled by user-code.
|
public MvvmApplication ( ) : System.Threading.Tasks | ||
return | System.Threading.Tasks |
protected OnActivated ( IActivatedEventArgs eventArguments ) : void | ||
eventArguments | IActivatedEventArgs | The event arguments, that contain more information about the activation of the application. |
return | void |
protected OnActivatedAsync ( IActivatedEventArgs eventArguments ) : System.Threading.Tasks.Task | ||
eventArguments | IActivatedEventArgs | The event argument, that contain more information on the activation of the application. |
return | System.Threading.Tasks.Task |
protected OnLaunched ( |
||
eventArguments | The event arguments, that contain more information about the lauch of the application. | |
return | void |
protected OnResumingAsync ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
protected OnSuspendingAsync ( ) : System.Threading.Tasks.Task | ||
return | System.Threading.Tasks.Task |
protected OnUnhandledExceptionAsync ( |
||
eventArguments | The event arguments that contain further information about the exception that was not properly handled by user-code. | |
return | System.Threading.Tasks.Task |