C# Class System.Windows.Mvvm.Sample.App

Represents the MVVM application and serves as an entry-point to the application.
Inheritance: System.Windows.Mvvm.Application.MvvmApplication
Afficher le fichier Open project: lecode-official/mvvm-framework

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Disposes of all managed and unmanaged resources that have been allocated.

OnStartedAsync ( ApplicationStartedEventArgs eventArguments ) : System.Threading.Tasks.Task

This is the entry-piont to the application, which gets called as soon as the application has finished starting up.

Method Details

Dispose() protected méthode

Disposes of all managed and unmanaged resources that have been allocated.
protected Dispose ( bool disposing ) : void
disposing bool /// Determines whether only unmanaged, or managed and unmanaged resources should be disposed of. This is needed when the method is called from the destructor, because when the destructor is called all managed resources have already been disposed of. ///
Résultat void

OnStartedAsync() protected méthode

This is the entry-piont to the application, which gets called as soon as the application has finished starting up.
protected OnStartedAsync ( ApplicationStartedEventArgs eventArguments ) : System.Threading.Tasks.Task
eventArguments System.Windows.Mvvm.Application.ApplicationStartedEventArgs The event arguments, that contains all necessary information about the application startup like the command line arguments.
Résultat System.Threading.Tasks.Task