DANIEL VAUGHAN

Codeproject Interview

29 Sep 2011

Recently I took part in an interview with CodeProject. It includes some info about my background, projects, interests.

Read more


Binding The Wp7 Progressindicator In Xaml

26 Aug 2011

Update: Since first posting this article, a later version of the WP FCL the ProgressIndicator gained binding support. You can bind it in a page like so: <shell:SystemTray.ProgressIndicator> <shell:ProgressIndicator IsIndeterminate="{Binding Busy}" IsVisible="{Binding Busy}" Text="{Binding Message}" /> </shell:SystemTray.ProgressIndicator> The Mango beta of the Windows Phone 7 SDK sees the inclusion of a new way to display progress of asynchronous operations within the phone’s system tray. This is done using the new ProgressIndicator class, which is a...

Read more


A Batch File For Closing Zune And Launching The Wpconnect Tool

24 Mar 2011

In a post from late last year, I looked at using a .bat file to detect the platform and launch the WPConnect tool using the path appropriate to the OS (32bit or 64 bit). I’ve since updated the batch file, which now closes the Zune software, waits a few seconds, and then attempts to use the WPConnect tool. It’s not rocket science, but it eases the burden a little when debugging on a Window Phone...

Read more


Loading Data When The User Scrolls To The End Of A List In Windows Phone 7

24 Jan 2011

Most phone users are concerned about network usage. Network traffic comes at a premium, and a user’s perception of the quality of your app depends a lot on its responsiveness. When it comes to fetching data from a network service, it should be done in the most efficient manner possible. Making the user wait while your app downloads giant reams of data doesn’t cut it. It should, instead, be done in bite-sized chunks. To make...

Read more


Refresh A Wp7 Phoneapplicationpage

05 Jan 2011

Here is a quick a dirty way to refresh a WP7 page. We use the NavigationService to navigate to the current page. There’s a catch though (in fact there are two but we’ll get to the second in a moment), we need to make a change to the Uri, else the NavigationService thinks we are trying to perform fragment navigation, which is not supported, and will raise an exception. A work-around is to tack a...

Read more