Wiley.com
Print this page Share

Beginning Windows Phone 7 Application Development: Building Windows Phone Applications Using Silverlight and XNA

ISBN: 978-0-470-91233-1
Paperback
600 pages
May 2011
Beginning Windows Phone 7 Application Development: Building Windows Phone Applications Using Silverlight and XNA (0470912332) cover image
This title is out-of-print and not currently available for purchase from this site.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
3 93 Missing "using" Statement
Listing 3-7: MainPage.xaml.cs

Code as is gives the following error:
Error   1          The type or namespace name 'DispatcherTimer' could not be found (are you missing a using directive or an assembly reference?)        

Code download correct--the book listing is missing the following statement:
using System.Windows.Threading;
7/29/11
Back to Top