Click or drag to resize
App Class
Provides application-specific behavior to supplement the default Application class.
Inheritance Hierarchy

Namespace: foodez
Assembly: foodez.WindowsPhone (in foodez.WindowsPhone.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
public sealed class App : Application, IComponentConnector, 
	IXamlMetadataProvider

The App type exposes the following members.

Constructors
  NameDescription
Public methodApp
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().
Top
Methods
  NameDescription
Public methodConnect
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExit
Shuts down the app.
(Inherited from Application.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetXamlType(String)
Public methodGetXamlType(Type)
Public methodGetXmlnsDefinitions
Public methodInitializeComponent
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
Properties
  NameDescription
Public propertyDebugSettings
Gets an object that declares how the app behaves when run in a debug environment.
(Inherited from Application.)
Public propertyRequestedTheme
Gets or sets a value that determines the light-dark preference for the overall theme of an app.
(Inherited from Application.)
Public propertyResources
Gets a collection of application-scoped resources, such as styles, templates, and brushes.
(Inherited from Application.)
Top
Events
  NameDescription
Public eventResuming
Occurs when the application transitions from Suspended state to Running state.
(Inherited from Application.)
Public eventSuspending
Occurs when the application transitions to Suspended state from some other state.
(Inherited from Application.)
Public eventUnhandledException
Occurs when an exception is raised by application code, forwarded from the native level. Applications can mark the occurrence as handled in event data.
(Inherited from Application.)
Top
See Also