Introduction
This article discusses the construction of a simple application that may be used to view RSS feeds from the desktop. The application allows the user to select a canned RSS feed or to key one. The RSS feed is opened and the article title and link nodes from the feed are placed into a tree view control. Each title becomes the parent of the related link.
Figure 1: Application in Use
The title of the article occupies the parent node with the link node placed as the child of each title node. If the user clicks on any of the link nodes, the article associated with the title will be opened into a web browser control.
Figure 2: Canned RSS Feeds in Drop-down, Current RSS Feed on Left Side
The intent of the application was to provide a simple tool that may be used to organize and read RSS postings. The titles and links are recovered from the XML returned from the RSS service.
Getting Started
In order to get started, unzip the included project and open the solution in the Visual Studio 2008 environment. In the solution explorer, you should note these files:
Figure 3: Solution Explorer
As you can see, the project is a Windows Forms application containing only a single form. The form itself contains a tool strip control docked to the top with a text box used for entering RSS feed locations, a button control to open the RSS feed, and a combo box containing a collection of RSS feed which may be directly opened. The left-hand side of the form contains a TreeView control used to display the RSS feed titles and links. The right-hand side contains a web browser control that is used to display the linked page.
The Main Form (frmRss.cs)
The main form is used to open the selected RSS feed as an XML document and to display them in TreeView format. The form also places the story link as a child node to each title node. If you’d care to open the code view up, in the IDE you will see that the code file begins as follows:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Xml;
using System.Xml.XPath;
Note that the additions of the System.Xml and System.Xml.XPath libraries are the only actual departure from the default. Following the imports, a class is defined and a constructor added. A local string variable is declared and used to hold the RSS feed URL. Within the constructor, the string variable used to point to the location of the RSS feed is zeroized as an empty string.
namespace RSSFeedSpeedReader
{
public partial class frmRss : Form
{
string mRssUrl;
public frmRss()
{
InitializeComponent();
mRssUrl = string.Empty;
}
Next up is the click event handler for the RSS Go button located on the form’s tool strip control. Within this click event handler, the code is placed to query for only the RSS feed item title and link. These two values are loaded into the tree view. They make it possible for the user to read the article title and then open the link into the web browser control to read it if they are interested in getting more information on the topic. This section of code in annotated and should be easy enough to follow using the comments:
private void tsRssGo_Click(object sender, EventArgs e)
{
try
{
mRssUrl = this.tsRssLocation.Text;
tvwRss.Nodes.Clear();
this.Cursor = Cursors.WaitCursor;
XmlDocument doc = new XmlDocument();
try
{
doc.Load(mRssUrl);
this.Cursor = Cursors.Default;
}
catch (Exception ex1)
{
this.Cursor = Cursors.Default;
MessageBox.Show(ex1.Message);
return;
}
XPathNavigator navigator = doc.CreateNavigator();
try
{
XPathNodeIterator nodes =
navigator.Select("//rss/channel/item/title");
while (nodes.MoveNext())
{
XPathNavigator node = nodes.Current;
string tmp = node.Value.Trim();
tmp = tmp.Replace("\n", "");
tmp = tmp.Replace("\r", "");
tvwRss.Nodes.Add(tmp);
}
int position = 0;
XPathNodeIterator nodesLink =
navigator.Select("//rss/channel/item/link");
while (nodesLink.MoveNext())
{
XPathNavigator node = nodesLink.Current;
string tmp = node.Value.Trim();
tmp = tmp.Replace("\n", "");
tmp = tmp.Replace("\r", "");
tvwRss.Nodes[position].Nodes.Add(tmp);
position++;
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "RSS Feed Load Error");
}
this.Cursor = Cursors.Default;
}
catch (Exception ex2)
{
MessageBox.Show(ex2.ToString(), "RSS Feed Initialization
Failure");
}
}
The next section of the code is used to load the link content into the web browser control. This is accomplished using the After Select event from the TreeView control. When this event fires, the code merely examines the link text and, if it starts with http, the function makes an attempt to load the link into the web browser control occupying the right hand panel in the main form.
private void tvwRss_AfterSelect(object sender, TreeViewEventArgs e)
{
try
{
string tmp = tvwRss.SelectedNode.Text.Substring(0, 4);
if (tmp == "http")
webBrowser1.Navigate(tvwRss.SelectedNode.Text);
}
catch
{
}
}
The last method in the class is the handler for the canned feeds combo box selected index changed event. In this code, when the user selects a canned feed from the drop down list, that link is loaded into the tool strip’s RSS Location text box control and the tool strip control’s RSS Go button’s click event is fired. That button click event handler will clear the tree view control and reload it with the information captured from the replacement RSS feed.
private void tsCboFeeds_SelectedIndexChanged(object sender, EventArgs
e)
{
tsRssLocation.Text = tsCboFeeds.SelectedItem.ToString();
tsRssGo_Click(this, new EventArgs());
}
Summary
This application demonstrates a simple way of building an RSS Feed reader through the manipulation of the RSS Feed’s XML. This is a little different than most of the RSS Feeder readers I have encountered in that it does not attempt to provide the standard set of information returned from the feed in a ListBox or similar control. Rather, this approach only displays the headlines and provides the links to the main story using the tree view control and a web browser control, in that the user can scan the headlines and then pop open the link directly to display the main story in a web browser control. Of course, you can pull additional information from the feed and display it using other added controls. The approach is certainly something that can be expanded upon. However, this does provide a clean and simple interface to the RSS Feed's main points of information.
History
- 29 February, 2008 -- Original version posted