13

I need to delete selective pages from the navigation stack (winRT- C#)

I checked:

WinRT - How to ignore or delete page from navigation history and

Pop pages off navigation stack in Windows 8 App

but couldn't figure out how to manipulate the navigation stack. Is it possible to manipulate this navigation stack?

Community
  • 1
  • 1
ashish nirkhe
  • 689
  • 3
  • 10
  • 22
  • possible duplicate: http://stackoverflow.com/questions/11278569/how-can-i-remove-pages-from-a-frames-history – Murkaeus May 04 '13 at 03:34

1 Answers1

15
Frame.BackStack.RemoveAt(Frame.BackStack.Count - 1);
swinefeaster
  • 2,525
  • 3
  • 30
  • 48
  • Both RemoveAt and Count are not showing up for me. BackStack is type IEnumerable which doesn't have those properties. – Michael Mar 01 '16 at 14:35