C# 클래스 System.Windows.Mvvm.Sample.App

Represents the MVVM application and serves as an entry-point to the application.
상속: System.Windows.Mvvm.Application.MvvmApplication
파일 보기 프로젝트 열기: lecode-official/mvvm-framework

보호된 메소드들

메소드 설명
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