Windows phone開發初體驗之(三)-參數傳遞

來源:互聯網
上載者:User

在上一節我們知道了如何處理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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.