在上一節我們知道了如何處理WindowsPhone的頁面導航同時也實現了兩個頁面之間的資料傳遞。在實際開發中我們還需要為兩個頁面傳遞資料。經過看官方文檔和網上資料搜集,總結參數傳遞主要有以下的四種方式:
1、通過NavigationContext的QueryString方式;
2、通過程式的App類設定全域變數(此方法可以傳遞對象);
3、通過NavigationEventArgs事件類別的Content屬性設定;
4、通過PhoneApplicationService類的State屬性。
通過NavigationContext的QueryString方式這種方式在上一節已經介紹了,在些不再描述。下面重點介紹後面三種
(一) 通過程式的App類設定全域變數(此方法可以傳遞對象)
在工程目錄下建立一個”Model”的檔案夾,再在這個檔案夾裡建立一個類:Person類
public class Person { public String Name { get;set; } public int Age { get; set; } }
然後再在App.xaml.cs檔案中加上這麼一段代碼
public partial class App : Application { ///<summary> ///提供對電話應用程式的根架構的輕鬆訪問。 ///</summary> ///<returns>電話應用程式的根架構。</returns> public PhoneApplicationFrame RootFrame { get; private set; } public static Personperson { get; set;} ……..}
再在建立的AppHome.xaml.cs檔案中為頁面上的按鈕添加click事件
private voidbutton1_Click(object sender, RoutedEventArgs e) { App.person= new Model.Person { Name=txt_Name.Text, Age=Convert.ToInt32(txt_Age.Text) }; Uriuri = new Uri("/AppData.xaml",UriKind.Relative); NavigationService.Navigate(uri); }
然後在AppData.xaml檔案的Loaded事件中接受傳遞過來的值:
private voidLayoutRoot_Loaded(object sender, RoutedEventArgs e) { if(App.person!=null) { tb_Name.Text = App.person.Name; tb_Age.Text = App.person.Age.ToString(); } }
最終實現效果:
(一) 通過NavigationEventArgs事件類別的Content屬性設定
ContentPage1.xaml.cs檔案中:
protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e) { vartargetPage = e.Content as ContentPage2; if(targetPage != null) { targetPage.StrContent=textBox1.Text; } } privatevoid button1_Click(objectsender, RoutedEventArgs e) { NavigationService.Navigate(new Uri("/ContentPage2.xaml",UriKind.Relative)); }
ContentPage2.xaml.cs中取出Content的值:
public String StrContent { get;set; } protectedoverride voidOnNavigatedTo(System.Windows.Navigation.NavigationEventArgse) { if(StrContent != null) { this.tb_ContentValue.Text= StrContent; } }
實現的效果:
(二) 通過PhoneApplicationService類的State屬性:
StatePage1.xaml.cs檔案:
protected override voidOnNavigatedFrom(System.Windows.Navigation.NavigationEventArgse) { PhoneApplicationServicephoneService = PhoneApplicationService.Current; phoneService.State["param1"] = this.textBox1.Text; } privatevoid button1_Click(objectsender, RoutedEventArgs e) { NavigationService.Navigate(new Uri("/StatePage2.xaml",UriKind.Relative)); }
StatePage2.xaml.cs檔案:
protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e) { if(PhoneApplicationService.Current.State.ContainsKey("param1")) { this.tb_ParamValue.Text= PhoneApplicationService.Current.State["param1"] asstring; } } privatevoid button1_Click(objectsender, RoutedEventArgs e) { if(NavigationService.CanGoBack) { NavigationService.GoBack(); } }
實現效果:
如需轉載引用請註明出處:http://blog.csdn.net/jiahui524
原始碼:http://download.csdn.net/detail/jiahui524/4316106