商店应用的进程模型 -- 页面跳转

WinRT中有个类叫Windows.UI.Xaml.Controls.Frame,管理所有页面。此类继承于ContontControl类,再往上继承于UIElement类。
可以把Frame类的对象赋值给Window类的Content属性,当作绘制窗口。Frame类如下:

public class Frame : ContentControl, INavigate {
// Clears the stack from the next Page type to the end
// and appends a new Page type to the stack
public Boolean Navigate(Type sourcePageType, Object parameter);
public Boolean CanGoBack { get; } // True if positioned after the 1st Page type
public void GoBack(); // Navigates to the previous page type
public Boolean CanGoForward { get; } // True if a Page type exists after the current position
public void GoForward(); // Navigates to the next Page type
// These members return the stack's content and size
public IList<PageStackEntry> BackStack { get; }
public Int23 BackStackDepth { get; }
// Member to serialize/deserialize the stack's types/parameters to/from a string
public String GetNavigationState();
public void SetNavigationState(String navigationState);
// Some members not shown
}

Frame对象保存了一个Windows.UI.Xaml.Controls.Page类型的列表,注意是类型的列表,不是对象的列表。

在调用Navigate函数跳转的时候,传入目标Page类型,这样做是为了实例化一个目标Page,并做为Frame对象的内容。而不是保存所有页面的对象实例。

Frame只保存当前显示的页面,跳转过后就移除曾经页面的引用。也可以通过修改NavigationCacheMode让Frame不移除。

Page类是这样的:

public class Page : UserControl {
// Returns the Frame that "owns" this page
public Frame Frame { get; }
// Invoked when the Page is loaded and becomes the current content of a parent Frame
protected virtual void OnNavigatedTo(NavigationEventArgs e);
// Invoked after the Page is no longer the current content of its parent Frame
protected virtual void OnNavigatedFrom(NavigationEventArgs e);
// Gets or sets the navigation mode that indicates whether this Page is cached,
// and the period of time that the cache entry should persist.
public NavigationCacheMode NavigationCacheMode { get; set; }
// Other members not shown
}
这样一来,内存是节省了,但是页面间状态的维护也变难了,所以通常需要一个App级的单例的字典List<Dictionary<String, Object>>来保存状态,每个页面用一个Dictionary。

注意:Page可以引用Dictionary,但是Dictionary不要引用Page,否则将阻止页面被垃圾回收。同时也要避免在page中注册外部事件而不在OnNavigatedFrom中反注册的情况发生。

新项目自带的SuspensionManager类就是这个字典状态维护类。但是笔者用自己的管理类 http://Wintellect.com/Resource-WinRT -Via-CSharp

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值