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
显示文件 Open project: lecode-official/mvvm-framework

Protected Methods

Method 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 method

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. ///
return void

OnStartedAsync() protected method

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.
return System.Threading.Tasks.Task