Tag: Navigation
-
Page Stack in Windows Phone
In your application there may be many pages and you will come across requirement to navigate between pages. Windows Phone navigation model allows you to navigate between pages. Windows Phone navigation model is same as web based page navigation model. Even though name suggests in Windows Phone, pages are not windows. In your application, you…
Dhananjay Kumar
-
How to navigate to other page from a user control in Windows Phone 7
Let us say, you have a scenario to navigate from user control In code behind of the user control very first put below namespace, Next globally define an event as below, After this you need to create a method to handle page navigation event as below. This function is taking URI to navigate as input…
Dhananjay Kumar
-
Introduction to Silver Light 3.0 Navigation
Objective In this article , I will show how to work with Silver Light Navigation framework. Create a Silver Light Application by selecting Silver Light application from project template. And follow below steps. Step 1 Adding references Add below references to Silver Light application. System.Windows.Control System.Windos.Control.Data System.Windows.Control.Navigation Step2 Adding namespaces Open MainPage.Xaml and add the…
-
Navigation in Silver Light
Objective This article will show, How to navigate between two SilverLight pages in silverLight2.0. This article is giving step by step illustration on how to navigate and pass values between two SilverLight pages. In this SilverLight application user will input her name and two numbers in one Silverlight page and user will get greeting message…
-
Navigation Web Site
Create a website project. Make it a file system based web site. In the File menu , choose either WebSite. Select ASP.Net Web Site in the Templates pane. Change the Name to NavigationSite and click OK. Delete Default page from the application. Why we are deleting Default page because it would be easier to implement…