C# Class Rotate_Model.App

Provides application-specific behavior to supplement the default Application class.
Inheritance: Windows.UI.Xaml.Application
ファイルを表示 Open project: Myfreedom614/UWP-Samples

Public Properties

Property Type Description
splashScreen Windows.ApplicationModel.Activation.SplashScreen

Public Methods

Method Description
App ( ) : System

Initializes the singleton application object. This is the first line of authored code executed, and as such is the logical equivalent of main() or WinMain().

Protected Methods

Method Description
OnActivated ( IActivatedEventArgs args ) : void

Invoked when application is launched through protocol. Read more - http://msdn.microsoft.com/library/windows/apps/br224742

OnFileActivated ( FileActivatedEventArgs args ) : void

Invoked when application is launched via file Read more - http://msdn.microsoft.com/library/windows/apps/br224742

OnLaunched ( LaunchActivatedEventArgs args ) : void

Invoked when the application is launched normally by the end user. Other entry points will be used when the application is launched to open a specific file, to display search results, and so forth.

Private Methods

Method Description
InitializeUnity ( string args ) : void

Method Details

App() public method

Initializes the singleton application object. This is the first line of authored code executed, and as such is the logical equivalent of main() or WinMain().
public App ( ) : System
return System

OnActivated() protected method

Invoked when application is launched through protocol. Read more - http://msdn.microsoft.com/library/windows/apps/br224742
protected OnActivated ( IActivatedEventArgs args ) : void
args IActivatedEventArgs
return void

OnFileActivated() protected method

Invoked when application is launched via file Read more - http://msdn.microsoft.com/library/windows/apps/br224742
protected OnFileActivated ( FileActivatedEventArgs args ) : void
args Windows.ApplicationModel.Activation.FileActivatedEventArgs
return void

OnLaunched() protected method

Invoked when the application is launched normally by the end user. Other entry points will be used when the application is launched to open a specific file, to display search results, and so forth.
protected OnLaunched ( LaunchActivatedEventArgs args ) : void
args Windows.ApplicationModel.Activation.LaunchActivatedEventArgs Details about the launch request and process.
return void

Property Details

splashScreen public_oe property

public SplashScreen,Windows.ApplicationModel.Activation splashScreen
return Windows.ApplicationModel.Activation.SplashScreen