本节实现的内容是数据共享,实现的效果描述:首先是建立两个页面,当页面MainPage通过事件导航到页面SecondPage是,我们需要将MainPage中的一些内容(比如一个字符串)传递到SecondPage中,SecondPage页面就出呈现出传递来的内容,当页面SecondPage通过事件导航到页面MainPage的时候,我们也把一些内容(比如一个字符串)传递与页面MainPage;
在建立的MainPage.xaml文件中我只添加了一个Button元素,设置显示的Content内容,并定义了该元素的触摸事件:
<Button x:Name="btn" Content="导航到第二个页面" Grid.Row="" Click="btn_Click"></Button>
MainPage的隐藏文件首先需要引用如下命名空间
//引用命名空间--PhoneApplicationService类用到using Microsoft.Phone.Shell;
MainPage的隐藏文件的全部代码如下:
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="" Click="btn_Click"></Button>
SecondPage的隐藏文件也需要引用相同的命名空间:
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方法,所以我们在
通过App类来进行共享参数是因为在程序中所有的页面都可以访问Application派生的App类,在App类中设置的属性当然我们也可以访问,其中Application类的静态属性Current返回的是Application对象的引用,如果想转换为派生的App类,强制转换即可
PhoneApplicationService类的实例化在App.xaml文件中
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>
页面最后加载的方法:OnNavigatedFrom方法;获取导航目标页:e.Content 并进行强制转换;访问App类的公共属性;PhoneApplicationService.State进行暂时的保存及读取;