Application.OnFileActivated method

0 out of 1 rated this helpful - Rate this topic

Invoked when the application is activated through file-open.

Syntax


protected virtual void OnFileActivated(
  FileActivatedEventArgs args
)

Parameters

args

Type: FileActivatedEventArgs

Event data for the event.

Remarks

OnFileActivated is a pre-defined activation point handler that is invoked for a core Activated event when the ActivationKind is File.

An app can register to become the default handler for a certain file type. You should only register for a file type if you expect to handle all file launches for that type of file. In addition to overriding OnFileActivated, your app must also specify an extension point in the package manifest. For more info, see How to handle file activation.

All Application overrides involved in an activation scenario should call Window.Activate in their implementations.

Requirements

Minimum supported client

Windows 8

Minimum supported server

Windows Server 2012

Namespace

Windows.UI.Xaml
Windows::UI::Xaml [C++]

Metadata

Windows.winmd

See also

Application
How to handle file activation
How to activate an app
Association launching sample

 

 

Build date: 1/31/2013

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.