Silverlight 页面导航

本文介绍Silverlight 3中新引入的导航框架特性,该特性允许开发者通过API进行页面跳转,并提供了灵活的URI映射机制。文章详细解释了如何在App.xaml文件中配置不同的URI映射规则,包括静态页面映射及使用通配符实现动态页面路径映射的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Silverlight 3 的一个新特性是通过在其APIs中提供一个导航框架来实现页面的跳转。

在App.xaml里提供了这种方式来使用它的Uri映射机制。

 1:  <Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   
 2:               xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    
 3:               x:Class="NavigationSample.App"   
 4:               xmlns:navcore="clr-namespace:System.Windows.Navigation;assembly=System.Windows.Controls.Navigation"   >
 5:      <Application.Resources>
 6:          <navcore:UriMapper x:Key="uriMapper">
 7:              <navcore:UriMapping Uri="About-Us" MappedUri="/Views/AboutPage.xaml" /> 
 8:          </navcore:UriMapper> 
 9:      </Application.Resources> 
10:  </Application>

如果你不确定页面的绝对路径,你还可以通过通配符来实现动态的Uri影射。

1:  <navcore:UriMapper x:Key="uriMapper">
2:       <navcore:UriMapping Uri="{}{page}" MappedUri="/Views/{page}.xaml" /> 
3:   </navcore:UriMapper>

这样做十分友好。可以动态帮你实现页面的绝对路径跳转.

你还可以按照一些命名规则,比如你确定你仅需要在页面或者其他什么上限制路由,你可以给你的视图页面命名为"某某Page.xaml",那么你可以编写路由就像这样:

1:  <navcore:UriMapper x:Key="uriMapper">
2:      <navcore:UriMapping Uri="{}{page}" MappedUri="/Views/{page}Page.xaml" /> 
3:  </navcore:UriMapper>

这些导航路由是自上而下读取的,所以默认状态下你仍然可以同时拥有明确的(或扩展的)路由。 因此给出如下代码:

1:  <navcore:UriMapper x:Key="uriMapper">
2:      <navcore:UriMapping Uri="About-Us" MappedUri="/Views/AboutPage.xaml" /> 
3:      <navcore:UriMapping Uri="History" MappedUri="/Views/AboutPage.xaml" />
4:      <navcore:UriMapping Uri="{}{page}" MappedUri="/Views/{page}.xaml" /> 
5:  </navcore:UriMapper>

当一个访问请求About-Us,History或者About页面,都会导航到/Views/AboutPage.xaml上。这就提供给你的实现一定的可伸缩性和粒度性,同时也为你的页面内容提供附加的搜索引擎优化得分点。

转载于:https://www.cnblogs.com/jacle169/archive/2012/12/09/2810080.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值