How to get the recent items from the JumpList?
问题 I'm using the Windows API Code pack to create a list of recent documents that are displayed in the jump list. It's working nice. I use this code to create entries: JumpTask jumpTask = new JumpTask() { Title = "RecentTest", Desciption = "...", ... } JumpList.AddToRecentCategory(jumpTask); And I can find them and click them, working fine. However, now I want to read these items and do something with them in my appliation (like show them, or open the last recent on application start). My problem