WPF Weather API


Are you developing a Windows WPF program that would benefit from having a weather forecast for your area displayed on the screen?

There is an article over at C# Helper called Get a weather forecast from openweathermap.org in C#. This article uses Win Forms, not WPF. The challenge will be to convert it to WPF. Here is what the first part of the article says: “This example displays a weather forecast from openweathermap.org. To get a forecast or other data, you build a URL describing your request and navigate to it. You then parse the returned XML or JSON data to see what openweathermap.org has to say. The first step in using openweathermap.org is to get an API ID. You can get one for free here. You will need to sign up for a free account. After you get an API ID, you can use it in your URLs.“.

I have taken his project and moved it over to a WPF project.