1
我有一個名爲Page1.xaml
的頁面,可以訪問並訪問Page2.xaml
和Page3.xaml
。 我不想回頭從Page1
到Page3
,只是到Page2
。訪問BackStack時訪問衝突異常
現在我做到這一點時發生異常:
if (this.NavigationService.BackStack.Any())
{
}
是:Attempted to read or write protected memory.
可有人請告訴我我怎麼可以簡單地做什麼,我上面說的兩種WP7與WP8工作(約在這裏和那裏的MSDN文檔會談,所以我錯過了這一點)
更新:當我使用NavigationService.CanGoBack
發生同樣的錯誤:Attempted to read or write protected memory. This is often an indication that other memory is corrupt.