windows phone 三種資料共用的方式(8)

來源:互聯網
上載者:User

 本節實現的內容是資料共用,實現的效果描述:首先是建立兩個頁面,當頁面MainPage通過事件導航到頁面SecondPage是,我們需要將MainPage中的一些內容(比如一個字串)傳遞到SecondPage中,SecondPage頁面就出呈現出傳遞來的內容,當頁面SecondPage通過事件導航到頁面MainPage的時候,我們也把一些內容(比如一個字串)傳遞與頁面MainPage;

在建立的MainPage.xaml檔案中我只添加了一個Button元素,設定顯示的Content內容,並定義了該元素的觸摸事件:

<Button x:Name="btn" Content="導航到第二個頁面" Grid.Row="1" Click="btn_Click"></Button>

 MainPage的隱藏檔案首先需要引用如下命名空間

//引用命名空間--PhoneApplicationService類用到
using Microsoft.Phone.Shell;

MainPage的隱藏檔案的全部代碼如下:

using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Animation;using System.Windows.Shapes;using Microsoft.Phone.Controls;//引用命名空間--PhoneApplicationService類用到using Microsoft.Phone.Shell;namespace ShareData{    public partial class MainPage : PhoneApplicationPage    {        // 建構函式        public MainPage()        {            InitializeComponent();        }        /// <summary>        /// 點擊導航到第二個頁面        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void btn_Click(object sender, RoutedEventArgs e)        {            this.NavigationService.Navigate(new Uri("/SecondPage.xaml",UriKind.Relative));        }       //知識點①        protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)        {            //目標頁--知識點②            if (e.Content is SecondPage)            {                ((SecondPage)e.Content).ApplicationTitle.Text = "傳遞資料成功!";            }            //獲得application對象的引用--知識點③            (Application.Current as App).shareData = "通過APP類的屬性共用資料";            //應用程式的狀態管理---知識點④            PhoneApplicationService.Current.State["Share"] = "臨時資料";            base.OnNavigatedFrom(e);        }        ///// <summary>        ///// 接受傳遞的值        ///// </summary>        ///// <param name="e"></param>        //protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)        //{        //    //獲得App類中的共用資料        //    PageTitle.Text = (Application.Current as App).shareData.ToString();        //    if (PhoneApplicationService.Current.State.ContainsKey("Share"))        //    {        //        //獲得phoneapplicationService對象中設定state屬性        //        PageTitle.Text += "\n" + PhoneApplicationService.Current.State["Share"].ToString();        //    }        //    base.OnNavigatedTo(e);        //}    }} 

在建立的SecondPage.xaml檔案中我只添加了一個Button元素,設定顯示的Content內容,並定義了該元素的觸摸事件:<Button x:Name="btn" Content="導航到第1個頁面" Grid.Row="1" Click="btn_Click"></Button>

 SecondPage的隱藏檔案也需要引用相同的命名空間:

//引用命名空間--PhoneApplicationService類用到
using Microsoft.Phone.Shell;

 

SecondPage的隱藏檔案的全部代碼如下:

using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Windows;using System.Windows.Controls;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Animation;using System.Windows.Shapes;using Microsoft.Phone.Controls;//引用命名空間--PhoneApplicationService類用到using Microsoft.Phone.Shell;namespace ShareData{    public partial class SecondPage : PhoneApplicationPage    {        public SecondPage()        {            InitializeComponent();        }        /// <summary>        /// 接受傳遞的值        /// </summary>        /// <param name="e"></param>        protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)        {            //獲得App類中的共用資料            PageTitle.Text = (Application.Current as App).shareData.ToString();            if (PhoneApplicationService.Current.State.ContainsKey("Share"))            {                    //獲得phoneapplicationService對象中設定state屬性                PageTitle.Text += "\n" + PhoneApplicationService.Current.State["Share"].ToString();            }            base.OnNavigatedTo(e);        }        /// <summary>        /// 導航到第一個頁面        /// </summary>        /// <param name="sender"></param>        /// <param name="e"></param>        private void btn_Click(object sender, RoutedEventArgs e)        {            this.NavigationService.GoBack(); ;        }        //protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)        //{        //    if (e.Content is SecondPage)        //    {        //        ((SecondPage)e.Content).PageTitle.Text = "傳遞資料成功!";        //    }        //    (Application.Current as App).shareData = "通過APP類的屬性共用資料";        //    PhoneApplicationService.Current.State["Share"] = "臨時資料";        //    base.OnNavigatedFrom(e);        //}

我們三種傳遞參數的中的一種是利用App類下設定屬性進行多個頁面共用,直接在App類中設定的公用屬性:

  //設定共用的資料
        public string shareData { get; set; }

 至此全部代碼已經呈現在這裡,那我們是怎麼進行資料共用的那,ok,詳情如下:首先我們點擊MainPage中的button事件,因為沒有其他需要執行,此是件執行完畢後會立即執行MainPage頁面中的OnNavigatedFrom方法,我們可以看到OnNavigatedFrom的參數是System.Windows.Navigation.NavigationEventArgs就是我們導航是的參數,OnNavigatedFrom方法執行完畢後就會導航到SecondPage頁,SecondPage的隱藏檔案首先載入的就是建構函式,然後就是OnNavigatedTo方法,所以我們在

OnNavigatedTo方法中接受傳遞來的資料;同樣的原理我們可以把SecondPage中的資料傳遞到MainPage中,代碼中注釋掉的部分就是實現該內容,其中MainPage隱藏檔案中注釋掉的部分,如果去除注釋,在啟動並執行時候就會報錯,因為在程式進入MainPage頁面並觸發Button事件後會執行OnNavigatedFrom方法,而此時並沒有內容傳遞;

 

 

在此重寫OnNavigatedFrom的方法是為了在此頁面變為非活動頁面的時候最後執行,所以有些操作可以在本頁面進行完成;像我們這裡的可以賦值於目標頁面中TextBlock元素中的Text屬性;

 

 

System.Windows.Navigation.NavigationEventArgs 參數就是記錄了我們在點擊導航時的一些資訊,其中e.Content表示我們要導航到的頁面,像這樣((SecondPage)e.Content).ApplicationTitle.Text = "傳遞資料成功!";我們也訪問目標也的屬性

 

 

通過App類來進行共用參數是因為在程式中所有的頁面都可以訪問Application派生的App類,在App類中設定的屬性當然我們也可以訪問,其中Application類的靜態屬性Current返回的是Application對象的引用,如果想轉換為派生的App類,強制轉換即可

 

 PhoneApplicationService類的執行個體化在App.xaml檔案中

<Application     x:Class="ShareData.App"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"           xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">    <!--應用程式資源-->    <Application.Resources>    </Application.Resources>    <Application.ApplicationLifetimeObjects>        <!--處理應用程式的生存期事件所需的對象-->        <shell:PhoneApplicationService             Launching="Application_Launching" Closing="Application_Closing"             Activated="Application_Activated" Deactivated="Application_Deactivated"/>    </Application.ApplicationLifetimeObjects></Application>
PhoneApplicationService類所提供的是對資料的暫時儲存,只有在啟動並執行時候才能保留(隔離儲存區 (Isolated Storage)空間是可以持續保留的),這個類的屬性State可以設定的是字典容器,但是儲存在State字典中的對象都必須是可序列化的,可序列化的意思是可以將對象轉換成XML,XML也可以從中還原序列化成對象

 

 

 頁面最後載入的方法:OnNavigatedFrom方法;擷取導航目標頁:e.Content 並進行強制轉換;訪問App類的公用屬性;PhoneApplicationService.State進行暫時的儲存及讀取;
 源碼下載

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.