70-484 · Question #52
You are developing a Windows Store app. You need to provide users with multiple ways to open the app. Each way must open a different page of the app. Which two components should you use? (Each correct
The correct answer is A. the SecondaryTile class D. the Frame.Navigate() method. A: Secondary tiles are associated with a single parent app. They are pinned to the Start screen to provide a user with a consistent and efficient way to launch directly into a frequently used area of the parent app. This can be either a general subsection of the parent app that c
Question
You are developing a Windows Store app. You need to provide users with multiple ways to open the app. Each way must open a different page of the app. Which two components should you use? (Each correct answer presents part of the solution. Choose two.)
Options
- Athe SecondaryTile class
- Bms-appx Uniform Resource Identifiers (URIs)
- Cthe AppSettings file
- Dthe Frame.Navigate() method
- Eshortcuts that have parameters
How the community answered
(30 responses)- A70% (21)
- B3% (1)
- C20% (6)
- E7% (2)
Explanation
A: Secondary tiles are associated with a single parent app. They are pinned to the Start screen to provide a user with a consistent and efficient way to launch directly into a frequently used area of the parent app. This can be either a general subsection of the parent app that contains frequently updated content or a deep link to a specific area in the app. Not B: You can use URI (Uniform Resource Identifier) schemes to refer to app files that come from the app's package, data folders, or resources. Use the ms-appx and ms-appx-web schemes to refer to app files that come from the app's package (see App packages and deployment). Such files are typically static images, data, code, and layout files. The ms- appx-web scheme references these same files, but in the web not C: The <appSettings> element stores custom application configuration information such as database connection strings, file paths, XML Web service URLs, or any information stored in an application's .ini file.
Topics
Community Discussion
No community discussion yet for this question.