C# Класс System.Windows.Mvvm.Sample.App

Represents the MVVM application and serves as an entry-point to the application.
Наследование: System.Windows.Mvvm.Application.MvvmApplication
Показать файл Открыть проект

Защищенные методы

Метод Описание
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.

Описание методов

Dispose() защищенный Метод

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. ///
Результат void

OnStartedAsync() защищенный Метод

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.
Результат System.Threading.Tasks.Task