本文介绍了C#Windows Store 8.1 GoBack方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我创建了一个通用应用程序。在Windows 8.1项目中我有2页。 当我在MainPage中更改任何内容并按下GoForward按钮时,如此代码> Frame.Navigate(typeof(Page2)); 一切正常,但当我按下此代码按下按钮时,我有一个GoBack按钮: MainPage.Current.GoBack(); 主页上的所有内容我都会改变(就像一个新的开始)。 我该如何解决这个问题?Hi,I create a Universal apps. in Windows 8.1 Project i have 2 Pages. when i changed anything in the MainPage and press the GoForward button like this code>Frame.Navigate(typeof(Page2));everything is working, but in the Page 2 i have a GoBack button when i pressed that button by this code:MainPage.Current.GoBack();everything in the MainPage i'v changed will be gone (like a fresh start).how can i solve this problem?推荐答案 这篇关于C#Windows Store 8.1 GoBack方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-23 06:28