Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.59 KB

package_launch_787664348.md

File metadata and controls

37 lines (26 loc) · 1.59 KB
-api-id -api-type
M:Windows.ApplicationModel.Package.Launch(System.String)
winrt method

Windows.ApplicationModel.Package.Launch

-description

Windows Phone only. Launches the specified application.

-parameters

-param parameters

The navigation URI that specifies the page to launch and optional parameters. Use an empty string to specify the default page for the app.

-remarks

The Launch parameter has the same format as the NavigationUri format. The following table shows some examples:

ScenarioLaunch parameterExample
You just want to launch the app with the default page.Specify an empty string.`pkg.Launch("");`
You want to launch to a particular XAML page.Start with a forward slash (/) followed by the XAML page name.`pkg.Launch("/Page1.xaml");`
You want to pass parameters to the default page.Start with a question mark (?) followed by name/value pairs. Use an equal sign (=) between the name and value. Separate multiple name/value pairs with an ampersand (&).`pkg.Launch("?content=1234¶m2=test");`
You want to launch to a particular XAML page and pass in parameters.Use a combination of the previous two examples.`pkg.Launch("/Page1.xaml?content=1234¶m2=test ");`

Important

The Launch method only works if it is called from a Windows Phone Silverlight app.

-examples

-see-also