I'm working on a UWP Windows 10 app in C#/Xaml, and I'm planning to extend use of its jump list.
So, I know how to handle custom Jump List tasks (such as new file, open file etc.), but for the files in its most recently used list, I've no idea at all as to how to intercept what file has been selected from the list (been unable to find any documentation for it, whereas for jump list tasks I was able to).
If I do pick a file when the app isn't open, the splash screen stays open. And if I pick one when the app is already open, it just puts focus back on the app (obviously the desired behaviour doesn't happen in this scenario because I'm not handling this event).
This would be easy to figure out, if there was a way for me to debug the app after I've launched it via a jump list file (or if there is an App event called when the app isn't in focus and I return focus to it by selecting a jump list file - maybe there is but I'm not aware of it).
Any guidance will be much appreciated!