Click here to Skip to main content
15,880,796 members
Articles / Programming Languages / C#

Introduction to Windows Phone 7 Silverlight Development: Making an Off Line RSS Reader

Rate me:
Please Sign up or sign in to vote.
4.78/5 (10 votes)
15 Jul 2010CPOL7 min read 77.4K   2K   34  
Introduction to Windows Phone 7 Silverlight development: Making an Off Line RSS Reader
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;

namespace wp7RssReader
{
    public partial class pgUpdateRss : PhoneApplicationPage
    {
        RssSources MySources;

        public pgUpdateRss()
        {
            InitializeComponent();
        }

        private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
        {
            MySources = new RssSources();
            MySources.LoadFromIso();
            lstItems.ItemsSource = MySources.Sources;
        }

        private void button2_Click(object sender, RoutedEventArgs e)
        {
            foreach (RssSource Source in lstItems.SelectedItems)
            {
                RssFeeds MyFeeds = new RssFeeds(Source);
                MyFeeds.LoadFromUrl();
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Freelance Developer
Spain Spain
MVP Windows Platform Development 2014
MVP Windows Phone Development 2013
MVP Windows Phone Development 2012

Comments and Discussions