Navigation is an important and one of the basic aspects of web applications. In earlier versions of Silverlight, the Navigation system was missing, until Silverlight 3. This article is all about the concept of Navigation Framework and an attempt to summarize the overall concept. [Check Online Demo of this post].
Basic Concept
FRAME
- The concept of Navigation systems revolves around the Frame control. The Frame Control acts as a container for pages; it validates the state and maintains the navigation history.
- A Frame can host one page at a time.
- Source : Source property of Frame defines the default page to load when the application initializes.
- Navigate (URI uri) :Navigate Method navigates to the specific URI from code.
- <sdk:Frame Margin="0,37,0,-15″
- Name="frameContainer"
- Source="/View/Home.xaml"/>
PAGE
- Pages are the superset of controls capable of Navigation and allow itself to load inside a frame.
- It is important to know the relation between Frame and Page. The preceding figure illustrates the relation between them. Frame is responsible for navigation to a particular page with the URI. Once the page has loaded it can access the host Navigation system by NavigationContext andNavigationService.
Step By Step with an Example
CREATE A SILVERLIGHT APPLICATION
- Lets create a Silverlight Application from Visual Studio. As shown in the figure we have added some pages to the Silverlight project.
- The MainPage will load the content pages (In View Folder) with a click of navigation Hyperlinks.
ADD EVENT HANDLER TO NAVIGATE
For the project XAML code of the MainPage as follows .
- <Grid x:Name="LayoutRoot" Background="White">
- <sdk:Frame Margin="0,37,0,-15″
- Name="frameContainer"
- Source="/View/Home.xaml"/>
-
- <HyperlinkButton Content="Home"
- Height="19″ HorizontalAlignment="Left"
- Margin="12,12,0,0″ Name="hlHome"
- VerticalAlignment="Top" Width="39″ Click="hlHome_Click" />
- <HyperlinkButton Content="About"
- Height="19″ HorizontalAlignment="Left"
- Margin="57,12,0,0″ Name="hlAbout"
- VerticalAlignment="Top" Width="35″ />
- <HyperlinkButton Content="Customer"
- Height="19″ HorizontalAlignment="Left"
- Margin="98,12,0,0″ Name="hlCustomer"
- VerticalAlignment="Top" Width="62″ />
- </Grid>
Notice the HyperlinkButton "Home" click Event. It calls the code behind logic of navigating to the particular page.
- private void hlHome_Click(object sender, RoutedEventArgs e)
- {
- this.frameContainer.Navigate(new Uri("/View/Home.xaml", UriKind.Relative ));
- }
ADD ERROR PAGE FOR RESOURCE NOT FOUND
- <sdk:Frame Margin="0,37,0,-15″
- Name="frameContainer"
- Source="/View/Home.xaml"
- NavigationFailed="frameContainer_NavigationFailed" />
- private void frameContainer_NavigationFailed(object sender, System.Windows.Navigation.NavigationFailedEventArgs e)
- {
- e.Handled = true;
- frameContainer.Navigate(new Uri("/View/ErrorPage.xaml", UriKind.Relative));
- }
Navigation Through XAML
Instead of the preceding coding approach we can specify Hyperlink NavigateUri property to the their relative URIs.
- <HyperlinkButton Content="About"
- Height="19″ HorizontalAlignment="Left"
- Margin="57,12,0,0″ Name="hlAbout"
- VerticalAlignment="Top" Width="35″
- NavigateUri="/View/About.xaml"
- TargetName="frameContainer"
- />
Hiding Resources Through URI Mapper
- Sometimes it is necessary to hide your resource location also the long URL for the particular page is not so user-friendly. So we can use URIMAPPER to enable a short and meaningful name for URIs. Suppose for this example the user should be allowed to navigate the Customers page by adding "/Customers" to the URL. To use URIMAPPING we need the following 2 references to our mainpage.xaml page.
- xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
- xmlns:uriMapper="clr-namespace:System.Windows.Navigation;assembly=System.Windows.Controls.Navigation"
- Our Next step will be adding mapping to the Frame Control.
- <sdk:Frame Margin="0,37,0,-15″
- Name="frameContainer"
- Source="/View/Home.xaml"
- NavigationFailed="frameContainer_NavigationFailed" >
-
- <navigation:Frame.UriMapper>
- <uriMapper:UriMapper>
- <uriMapper:UriMapping Uri="/Customers" MappedUri="/View/Customers.xaml" />
- </uriMapper:UriMapper>
- </navigation:Frame.UriMapper>
-
- </sdk:Frame>
Now we need to set the Hyperlink navigateURI property as /"Customers ". So this will ensure that the "/Customer" is mapped to the mentioned MappedUri.
- <HyperlinkButton Content="Customer"
- Height="19″ HorizontalAlignment="Left"
- Margin="98,12,0,0″ Name="hlCustomer"
- VerticalAlignment="Top" Width="62″
- NavigateUri="/Customers"
- />
Now ,Customers page can be accessible by the new User friendly URI "http://localhost:6469/NavigationSystemTestPage.aspx#/Customers".
Accessing Navigation System from a Page
- As we mentioned above a page can access navigation system using NavigationService. In this example we have a DashBoard page that must be loaded once the user clicks on the button in the customers page. This can be achieved through code behind in Customers page on button click event .
- private void btnShowDashBoard_Click(object sender, RoutedEventArgs e)
- {
- NavigationService.Navigate(new Uri("/Admin/DashBoard.xaml", UriKind.Relative));
- }
NavigationService allows the page to get the host navigation service that used to navigate to this page.
Final Words
Silverlight navigation supports much more complex navigation logic such as Fragmented Navigation, Content loader etc.. This post only touches the basics of navigation. More posts will follow soon about navigation and Silverlight .
Source Code
Download Source NavigationSystem
Online Demo