Category Archives: Windows Tutorials

BuildMobile: Navigating with Data in Windows Phone

In my previous post you saw how to navigate forward to a new page and then back either via the hardware back button or by calling the GoBack method. Quite often you’ll want to pass some data between pages, for example if a user selects a customer from a list you can pass the customer id or name through to the customer details page. This post will not only cover how to do this, it will also highlight the sequence of events that are raised during the navigation process. For the purpose of this post we’ll be using a simple example application that has two pages, CustomerListPage and CustomerDetailsPage. Continue reading

Posted in Windows, Windows Tutorials | Tagged , , , , , , , , , | Comments Off on BuildMobile: Navigating with Data in Windows Phone

BuildMobile: Windows Phone 7 Navigation

Thumbnail What’s interesting about the development platform for Windows Phone is that it is based on Silverlight, which, as most of us are aware, was first and foremost a web technology. As such Silverlight supports a navigation model that maps well to the way browsers work with the ability to navigate forward to new pages and back to previous pages. In this post you’ll learn how to carry out navigation tasks within your Windows Phone application. When you create a new application in Visual Studio or Expression Blend your project will contain a number of files which define a basic Windows Phone application, see Figure 1 Continue reading

Posted in Tutorials, Web Tech, Windows, Windows Tutorials | Tagged , , , , , , , , , | Comments Off on BuildMobile: Windows Phone 7 Navigation

BuildMobile: WP7 Push Notifications Part 2

So far we’ve looked at the importance of notifications on the Windows Phone platform along with the different types of notifications that are available to your application. In this post we’re going to go through setting up your application to receive notifications and how to actually send notifications. The first step in configuring your application to receive notifications is to register with the Microsoft hosted Push Notification Service. This is done by creating an instance of the HttpNotificationChannel class and calling the Open method Continue reading

Posted in Tutorials, Web Tech, Windows, Windows Tutorials | Tagged , , , , , , , , , | Comments Off on BuildMobile: WP7 Push Notifications Part 2

BuildMobile: Push Notifications in Windows Phone

In my previous posts I’ve referred to the notification system that comes with Windows Phone, specifically in reference to updating the Live Tiles on the Start screen. We’re going to jump in and take a closer look at how the push notification system works and the types of notifications that are available to you. Firstly, there are three types of notifications that your application can make use of: Toast Notification If you want to notify the user of an important event within your application you can send a Toast Notification. This notification is made up of two pieces of text that appear as an overlay across whatever application the user is currently in, as shown in Figure 1. Continue reading

Posted in Tutorials, Windows, Windows Tutorials | Tagged , , , , , , , , , | Comments Off on BuildMobile: Push Notifications in Windows Phone