Application.OnFileOpenPickerActivated Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Invoked when the application is activated through file-open dialog association.
protected:
virtual void OnFileOpenPickerActivated(FileOpenPickerActivatedEventArgs ^ args) = OnFileOpenPickerActivated;
void OnFileOpenPickerActivated(FileOpenPickerActivatedEventArgs const& args);
protected virtual void OnFileOpenPickerActivated(FileOpenPickerActivatedEventArgs args);
function onFileOpenPickerActivated(args)
Protected Overridable Sub OnFileOpenPickerActivated (args As FileOpenPickerActivatedEventArgs)
Parameters
Event data for the event.
Remarks
OnFileOpenPickerActivated is a pre-defined activation point handler that is invoked for a core Activated event when the ActivationKind is FileOpenPicker.
All Application overrides involved in an activation scenario should call Window.Activate in their implementations.