|
|
|
|
|
Home
»
XAML
»
URI Mappings in Silverlight Navigation Framework
|
|
|
Author Rank:
|
|
Total page views :
2450
|
|
Total downloads :
47
|
|
|
|
|
Download
Files:
|
|
|
|
|
|
|
|
|
|
|
Similar ArticlesMost ReadTop RatedLatest
|
|
|
|
|
Introduction
Navigation Framework comes with Silverlight 3 RIA Services. Using this framework we can easily navigate between User Controls in a Silverlight Application. We can enable the Browser History capabilities and URI mappings can also be done.
To start with, we will build a simple Silverlight Application which will be easy to catch up.
Create Silverlight Navigation Application
Create a Navigation Application and name it NavigationFrameworkSample. The following screenshots will guide you through the process.

Figure 1.1 Creating a Silverlight Navigation Application

Figure 1.2 Enabling the RIA Features by Linking the web page

Figure 1.3 Solution explorer
Here MainPage.xaml will work as our master page, which will carry the common elements for the whole projects. Now we will redesign the template to our simple use. It will look like the following. Using Blend 3 I have tried to change the template a bit; you can explore your own creativity.

Figure 1.4 Changed MainPage.xaml in Blend 3
Xaml Code
<UserControl x:Class="NavigationFrameworkSample.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation" Width="400" Height="300"> <Grid x:Name="LayoutRoot" Background="LightBlue"> <Grid.RowDefinitions> <RowDefinition Height="0.107*"/> <RowDefinition Height="0.893*"/> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="0.26*"/> <ColumnDefinition Width="0.74*"/> </Grid.ColumnDefinitions> <Border Grid.Row="1" Style="{StaticResource FrameInnerBorderStyle}"> <StackPanel > <Button Click="NavButton_Click" Tag="/Views/HomePage.xaml" Content="Home" Style="{StaticResource PageLinkStyle}"/> <Button Click="NavButton_Click" Tag="/Views/AboutPage.xaml" Content="About" Style="{StaticResource PageLinkStyle}"/> </StackPanel> </Border> <Border Grid.Column="1" Grid.Row="1" BorderBrush="#FF000000" Style="{StaticResource FrameContainerStyle}" Margin="0,0,0,-4"> <navigation:Frame x:Name="Frame" Source="/Views/HomePage.xaml" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch" Padding="15,10,15,10" Background="White"/> </Border> <TextBlock Grid.Column="1" FontSize="22" VerticalAlignment="Center" HorizontalAlignment="Center" Text="Navigation Framework" TextWrapping="Wrap"/> </Grid> </UserControl>
Navigation Page
Navigation Framework has its own Page that is called navigation Page. Which we will see further. Navigation Framework's Views Folder consists of the Xaml Pages that are related to the project. In this sample application we have two Xaml Pages, Home.xaml and About.Xaml.

Figure 1.5 Other Pages in Views Folder
Xaml Code for Home Page
<navigation:Page x:Class="NavigationFrameworkSample.HomePage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation" Title="HomePage "> <Grid x:Name="LayoutRoot" Background="White"> <StackPanel> <TextBlock Text="Home" FontSize="20"/> <StackPanel> <TextBlock Text="Navigation Framework in Silverlight 3" /> </StackPanel> </StackPanel> </Grid> </navigation:Page>
Xaml Code for About Page
<navigation:Page x:Class="NavigationFrameworkSample.AboutPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation" Title="AboutPage "> <Grid x:Name="LayoutRoot" Background="White"> <StackPanel> <TextBlock Text="About" FontSize="20"/> <TextBlock Text="Navigation Framework is all about Navigating between User Controls"/> </StackPanel> </Grid> </navigation:Page>
As soon as we create the Navigation Application, System.Windows.Controls.Navigation.DLL is added to the project's reference. In Navigation framework we have a control called Frame, which can load a Page into this. It has the same concept as Frame in ASP.NET.
To navigate through the pages we will use the following default logic of the framework.
private void NavButton_Click(object sender, RoutedEventArgs e) { Button navigationButton = sender as Button; String goToPage = navigationButton.Tag.ToString(); this.Frame.Navigate(new Uri(goToPage, UriKind.Relative)); }
URI Mapping
This concept is new in Silverlight 3 Navigation Framework. Using this concept we can hide our Xaml page's location and we can achieve security. To achieve the above said, we need to do a trick in our App.xaml. We need to add the System.Windows.Controls.Navigation.dll to the xaml and change as follows: Change the default namespace.
Before
xmlns:navigationCore="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
After
xmlns:navigationCore="clr-namespace:System.Windows.Navigation;assembly=System.Windows.Controls.Navigation"
Now we are enabled to write the URI Mappings. Write the following as per your requirement.
<navigationCore:UriMapper x:Key="uriMapper"> <navigationCore:UriMapping Uri="Home" MappedUri="/Views/HomePage.xaml"/> <navigationCore:UriMapping Uri="About" MappedUri="/Views/AboutPage.xaml"/> </navigationCore:UriMapper>
Change the Following tag in Button
<Button Click="NavButton_Click" Tag="Home" Content="Home" Style="{StaticResource PageLinkStyle}"/> <Button Click="NavButton_Click" Tag="About" Content="About" Style="{StaticResource PageLinkStyle}"/>
Now we can change the path to our Uri anywhere in the project, like we used it in our startup page in MainPage.xaml. We can now change the source attribute of the Frame.
Source="Home"
Now we are ready to test our Sample and using this framework we enabled our browser history capability by default, that means now we can do Back and Forward for our required destination pages. The following screenshots will guide you through.

Figure 1.6 Running the Application

Figure 1.7 Typing the URI after # and getting the page

Figure 1.8 Browser Histories in IE.
|
|
|
Login
to add your contents and source code to this article
|
|
|
|
|
|
|
|
|
|
Diptimaya Patra
Diptimaya is working as a Software Engineer in UST Global Inc, Trivandrum Center. He is interested in Microsoft Technologies. He is a good learner. He has a large exposure on Microsoft Office SharePoint Services 2007, Windows SharePoint Services, Silverlight 2, Silverlight 3, Blend 2, Blend 3, WPF, WCF, ASP.NET, AJAX, and NHibernate.
He is a native of Cuttack, Orissa.
Reach him at diptimaya.patra@gmail.com
|
|
|
|
|
|
|
|
|
C# Consulting is founded in 2002 by the founders of C# Corner. Unlike a traditional
consulting company, our consultants are well-known experts in .NET and many of them
are MVPs, authors, and trainers. We specialize in Microsoft .NET development and
utilize Agile Development and Extreme Programming practices to provide fast pace
quick turnaround results. Our software development model is a mix of Agile Development,
traditional SDLC, and Waterfall models.
|
|
Click here to learn more about C# Consulting. |
|
|
|
|
|
|
|
Introducing MaxV - one click. infinite control. Hyper-V Hosting from MaximumASP.
Finally – a virtual platform that delivers next-generation Windows Server 2008 Hyper-V virtualization technology from a managed hosting partner you can truly depend on. Visit www.maximumasp.com/max for a FREE 30 day trial. Hurry offer ends soon.
Climb aboard the MaxV platform and take advantage of High Availability, Intelligent Monitoring, Recurrent Backups, and Scalability – with no hassle or hidden fees.
As a managed hosting partner focused solely on Microsoft technologies since 2000, MaximumASP is uniquely qualified to provide the superior support that our business is built on. Unparalleled expertise with Microsoft technologies lead to working directly with Microsoft as first to offer IIS 7 and SQL 2008 betas in a hosted environment; partnering in the Go Live Program for Hyper-V; and product co-launches built on WS 2008 with Hyper-V technology.
|
Dynamic PDF
ceTE software specializes in components for dynamic PDF generation and manipulation. The DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and new content to existing PDF documents from within your applications.
|
Go.NET
Build custom interactive diagrams, network, workflow editors, flowcharts, or software design tools. Includes many predefined kinds of nodes, links, and basic shapes. Supports layers, scrolling, zooming, selection, drag-and-drop, clipboard, in-place editing, tooltips, grids, printing, overview window, palette. 100% implemented in C# as a managed .NET Control. Document/View/Tool architecture with many properties&events. Optional automatic layout.
|
Dundas Software
Dundas Chart for .NET is the most advanced .NET charting package available today. With an extremely complete feature set, elegant architecture and easy implementation, Dundas Chart can quickly add advanced Charting functionality to enhance and transform ASP.NET and Windows Forms applications. Whether you are implementing charting into internal projects, or building applications for clients, Dundas Chart offers advanced technology and advanced results to get the most out of data.
|
Clickatell's SMS Gateway
Clickatell's Developer Solutions allow you to SMS enable any website or
application via a range of API's. Learn More about our API connections.
|
Nevron Chart for .NET 2010.1 Now Available
The leading .NET charting control now features PDF, Flash and Silverlight export, visualization of large datasets and more. Deliver true charting functionality to your BI, Scorecard, Presentation or Scientific apps. Download evaluation now.
|
|
|
|
|
|
|
|
|
Download
Files:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|