Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to delete page from navigation stack - c# windows 8

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?

like image 702
ashish nirkhe Avatar asked Apr 26 '13 19:04

ashish nirkhe


1 Answers

Frame.BackStack.RemoveAt(Frame.BackStack.Count - 1);
like image 76
swinefeaster Avatar answered Sep 28 '22 01:09

swinefeaster