Windows Phone开发(9):关于页面状态

移动开发
在导航离开当前页面时保存状态信息,而在用户再次回到该页面时,恢复状态信息。具体做法是重写两个方法:OnNavigatedFrom,当导航离开当前页面后调用,在这个方法中,要把状态相关的数据保存;OnNavigatedTo,当用户再次导航回该页面时,该方法被调用,这时候取出状态信息并恢复。

按照一般做法,刚学会如何导航,还是不够的,因为要知道,手机里面的每个页面,就如同Web页面一样,是无状态的。

啥是无状态?如果我们玩过Web开发就明白了,当你在当前页面输入一些内容,然后退回到前一页面,再前进到该页面,就会发现,之前输入的内容可能会没了。
再比如吧,你在页面A中进行了数据绑定,点击按钮后进行查询并把查询结果显示在表格中,然后你点击一个超链接,跳到D页面,然后你再从D页面退回A页面,你会发现,刚才查询的结果就不会显示了。

这就是无状态,也就是说,在你导航离开当前页面后,当前页面不会保留任何操作相关的数据。

在手机应用程序中同样如此,所以,在导航离开当前页面时保存状态信息,而在用户再次回到该页面时,恢复状态信息。

具体做法是重写两个方法:
1、OnNavigatedFrom,当导航离开当前页面后调用,在这个方法中,要把状态相关的数据保存;
2、OnNavigatedTo,当用户再次导航回该页面时,该方法被调用,这时候取出状态信息并恢复。

要读写状态信息,用到页面实例的State属性,它是一个字典,也就是键 - 值对——Key - Value。

下面我们来演示一下如何保存和恢复状态信息。
新建一个WP项目,随便布局一下主页面,反正做成类似撰写邮件的页面就行了,然后放一个按钮,点击按钮后打开电话拨号程序开始打电话。

  1. private void button1_Click(object sender, RoutedEventArgs e) 
  2.     PhoneCallTask cc = new PhoneCallTask(); 
  3.     cc.DisplayName = "小明"
  4.     cc.PhoneNumber = "1342580073"
  5.     cc.Show(); 

接着重写上面说的两个方法,分别保存和读取状态。
对于State属性,不必用Add,直接用键和值设置就行了,比较我要保存姓名信息,就这样写:
this.State["Name"] = "小红";

如果字典集合中没有Name的键,会自动创建,如果有,就改写其值。对,你肯定想到了,和Asp.net中我们使用Session差不多。

  1. protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e) 
  2.     this.State["content"] = ContentTextBox.Text; 
  3.     this.State["title"] = TitleTextBox.Text; 
  4.     base.OnNavigatedFrom(e); 
  5. protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e) 
  6.     if (this.State.ContainsKey("title")) 
  7.     { 
  8.         this.TitleTextBox.Text = State["title"as string
  9.     } 
  10.     if (this.State.ContainsKey("content")) 
  11.     { 
  12.         this.ContentTextBox.Text = State["content"as string
  13.     } 
  14.     base.OnNavigatedTo(e); 

要注意的是,如果是读取状态信息时,记得先判断要获取数据的键是否存在,如果存在再取值,为什么?别忘了,当应用程序第一次启动时,也会调用OnNavigatedTo方法,这时候,内存中不可能保存任何状态的,所以,在取状态信息时候要记得这点。

然而,我经过实验发现,在WP 7.1的模拟器中,不需要保存状态,什么代码都不写,系统会自动保存状态,然后导航回去后,状态信息依然存在。
就是不知道真实手机上是不是这样,如果是,那WP也真是强大!

下面是完整示例代码。

[XAML]

  1. <phone:PhoneApplicationPage  
  2.     x:Class="SaveStates.MainPage" 
  3.     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
  4.     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
  5.     xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone" 
  6.     xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone" 
  7.     xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
  8.     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
  9.     mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768" 
  10.     FontFamily="{StaticResource PhoneFontFamilyNormal}" 
  11.     FontSize="{StaticResource PhoneFontSizeNormal}" 
  12.     Foreground="{StaticResource PhoneForegroundBrush}" 
  13.     SupportedOrientations="PortraitOrLandscape" Orientation="Portrait" 
  14.     shell:SystemTray.IsVisible="True" xmlns:my="clr-namespace:System;assembly=mscorlib"
  15.     <phone:PhoneApplicationPage.Resources> 
  16.         <my:Double x:Key="textSize">35</my:Double> 
  17.     </phone:PhoneApplicationPage.Resources> 
  18.     <!--LayoutRoot 是包含所有页面内容的根网格--> 
  19.     <Grid x:Name="LayoutRoot" Background="Transparent"
  20.         <Grid.RowDefinitions> 
  21.             <RowDefinition Height="Auto"/> 
  22.             <RowDefinition Height="*"/> 
  23.         </Grid.RowDefinitions> 
  24.  
  25.         <!--TitlePanel 包含应用程序的名称和页标题--> 
  26.         <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28"
  27.             <TextBlock x:Name="ApplicationTitle" Text="我的应用程序" Style="{StaticResource PhoneTextNormalStyle}"/> 
  28.             <TextBlock x:Name="PageTitle" Text="页面名称" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/> 
  29.         </StackPanel> 
  30.  
  31.         <!--ContentPanel - 在此处放置其他内容--> 
  32.         <Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"
  33.             <Grid.RowDefinitions> 
  34.                 <RowDefinition Height="Auto" /> 
  35.                 <RowDefinition Height="Auto" /> 
  36.                 <RowDefinition Height="Auto" /> 
  37.                 <RowDefinition Height="*" /> 
  38.                 <RowDefinition Height="Auto" /> 
  39.             </Grid.RowDefinitions> 
  40.             <TextBlock Grid.Row="0" HorizontalAlignment="Left" Margin="13,15,0,10" Name="textblockTitle" Text="标题:" VerticalAlignment="Top" FontSize="{StaticResource textSize}" /> 
  41.             <TextBox Grid.Row="1" HorizontalAlignment="Stretch" Margin="2" Name="TitleTextBox" VerticalAlignment="Top" /> 
  42.             <TextBlock FontSize="{StaticResource textSize}" HorizontalAlignment="Left" Margin="13,10,0,5" Name="textBlock1" Text="正文:" VerticalAlignment="Top" Grid.Row="2" /> 
  43.             <TextBox Grid.Row="3" HorizontalAlignment="Stretch" Margin="2" Name="ContentTextBox" VerticalAlignment="Stretch" TextWrapping="Wrap" VerticalScrollBarVisibility="Auto" /> 
  44.             <Button Content="提          交" Grid.Row="4" Height="72" HorizontalAlignment="Stretch" Margin="2" Name="button1" VerticalAlignment="Top" Click="button1_Click" /> 
  45.         </Grid> 
  46.     </Grid> 
  47.   
  48.     <!--演示 ApplicationBar 用法的示例代码--> 
  49.     <!--<phone:PhoneApplicationPage.ApplicationBar> 
  50.         <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True"
  51.             <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="按钮 1"/> 
  52.             <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="按钮 2"/> 
  53.             <shell:ApplicationBar.MenuItems> 
  54.                 <shell:ApplicationBarMenuItem Text="菜单项 1"/> 
  55.                 <shell:ApplicationBarMenuItem Text="菜单项 2"/> 
  56.             </shell:ApplicationBar.MenuItems> 
  57.         </shell:ApplicationBar> 
  58.     </phone:PhoneApplicationPage.ApplicationBar>--> 
  59.  
  60. </phone:PhoneApplicationPage> 

[C#]

  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.Linq; 
  4. using System.Net; 
  5. using System.Windows; 
  6. using System.Windows.Controls; 
  7. using System.Windows.Documents; 
  8. using System.Windows.Input; 
  9. using System.Windows.Media; 
  10. using System.Windows.Media.Animation; 
  11. using System.Windows.Shapes; 
  12. using Microsoft.Phone.Controls; 
  13. using Microsoft.Phone.Tasks; 
  14. namespace SaveStates 
  15.     public partial class MainPage : PhoneApplicationPage 
  16.     { 
  17.         // 构造函数 
  18.         public MainPage() 
  19.         { 
  20.             InitializeComponent(); 
  21.         } 
  22.         private void button1_Click(object sender, RoutedEventArgs e) 
  23.         { 
  24.             PhoneCallTask cc = new PhoneCallTask(); 
  25.             cc.DisplayName = "小明"
  26.             cc.PhoneNumber = "1342580073"
  27.             cc.Show(); 
  28.         } 
  29.         protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e) 
  30.         { 
  31.             this.State["content"] = ContentTextBox.Text; 
  32.             this.State["title"] = TitleTextBox.Text; 
  33.             base.OnNavigatedFrom(e); 
  34.         } 
  35.         protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e) 
  36.         { 
  37.             if (this.State.ContainsKey("title")) 
  38.             { 
  39.                 this.TitleTextBox.Text = State["title"as string
  40.             } 
  41.             if (this.State.ContainsKey("content")) 
  42.             { 
  43.                 this.ContentTextBox.Text = State["content"as string
  44.             } 
  45.             base.OnNavigatedTo(e); 
  46.         } 
  47.     } 

 

责任编辑:闫佳明 来源: oschina
相关推荐

2010-05-11 16:47:32

Windows Pho

2013-04-17 10:45:26

Windows PhoWindows Pho

2012-06-07 09:33:13

Windows Pho

2013-09-29 09:06:38

Windows 9WindowsWindows Pho

2013-07-30 12:37:56

Windows PhoWindows Pho

2010-04-21 17:07:54

Windows Pho

2011-06-07 12:42:15

Windows Pho

2013-04-17 14:00:06

Windows PhoWindows Pho

2013-04-16 17:02:50

Windows Pho概论

2013-04-19 16:34:56

Windows PhoWindows Pho

2013-07-30 11:18:37

Windows PhoWindows Pho

2013-07-17 09:51:29

Windows Pho微软

2010-04-08 17:40:23

Windows Pho

2010-07-16 15:29:02

Windows Pho

2013-07-31 13:03:51

Windows PhoWindows Pho

2011-06-07 11:35:38

Windows Pho

2013-04-17 14:47:19

Windows PhoWindows Pho

2012-08-16 10:35:50

Windows Pho

2013-04-17 13:27:04

Windows PhoWindows Pho

2012-08-17 13:44:26

Windows Pho
点赞
收藏

51CTO技术栈公众号