How can I open a file I've added to my Windows Store App project programatically?
问题 I want to load a PDF file in response to a Tapped event. I added the file to my project (Add > Existing Item), set "Build Action" to "Content" and "Copy to Output Directory" to "Copy if newer" I'm thinking the code I need may be something like this: async Task LoadTutorial() { await Launcher.LaunchUriAsync(new Uri("what should be here to access the output folder?")); } If I'm right, what do I need to pass as the Uri? Otherwise, how is this accomplished? UPDATE On a related note, to add an