Hi there is a control in asp.net called SiteMapPath i need something similar in WPF to help users navigate back and forth through the application pages …
does any one know about any third party control or built in features that can help me implement this feature or should i start from scratch
Being able to display journal history can do the trick too
Ok i created my own breadcrumb for wpf …
First of all since all the navigation in my application were based on wpf NavigationService i used the BackStack property of the Frame
Now it is just a matter of binding a listbox or whatever control you want to the Name property of the List above and in my case since i just needed to keep track of previous pages i added this code to the SelectionChanged event of the listbox bound to above List