How do you open/navigate a page or window when clicking on a recently used item in the application menu? I have seen the help file on how to add the item to menu, but not sure how to set it to know where to navigate. I have a main navigation hub that contains carousel images to open sub-applications (Mainly pages viewed in a Frame ). Once the sub-app is opened, it would be nice to add the sub-app name to the recently used list to allow quick navigation back to that page/window. Thanks in advance.
There is a RecentItems collection property off the ApplicationMenu object. You can pre-populate this from xaml or thru procedural code. You can add any element to this collection, either tools or even Button controls. The following xaml shows the adding of a ButtonTool to the RecentItems collection and wiring up its click event, in code you could add to the collection via the this.XamRibbon1.ApplicationMenu.RecentItems.Add() method:
<igRibbon:XamRibbon.ApplicationMenu>
<igRibbon:ApplicationMenu.RecentItems>
</igRibbon:ApplicationMenu.RecentItems>
</igRibbon:XamRibbon.ApplicationMenu>