C# Class ERP.App

Main Application class.
Inheritance: System.Windows.Application
Datei anzeigen Open project: arthurgfonseca/ERP-Grupo5

Public Methods

Method Description
App ( ) : System

Creates a new App instance.

Protected Methods

Method Description
InitializeRootVisual ( ) : void

Initializes the Application.RootVisual property. The initial UI will be displayed before the LoadUser operation has completed (The LoadUser operation will cause user to be logged automatically if using windows authentication or if the user had selected the "keep me signed in" option on a previous login).

Private Methods

Method Description
Application_Startup ( object sender, System.Windows.StartupEventArgs e ) : void
Application_UnhandledException ( object sender, ApplicationUnhandledExceptionEventArgs e ) : void
Application_UserLoaded ( LoadUserOperation operation ) : void

Invoked when the LoadUserOperation completes. Use this event handler to switch from the "loading UI" you created in InitializeRootVisual to the "application UI"

InitializeComponent ( ) : void

Method Details

App() public method

Creates a new App instance.
public App ( ) : System
return System

InitializeRootVisual() protected method

Initializes the Application.RootVisual property. The initial UI will be displayed before the LoadUser operation has completed (The LoadUser operation will cause user to be logged automatically if using windows authentication or if the user had selected the "keep me signed in" option on a previous login).
protected InitializeRootVisual ( ) : void
return void