Using XML in Silverlight

XML is an important medium in the world of Silverlight especially where Web Services are involved.  The .NET 3.5 that comes with Silverlight omits some of the core XML objects that you will find in the full incarnation of .NET 3.5.  There is however the XML Reader and Writer classes that allow you high speed access to reading and writing XML documents.  In our sample on this page we use an XML reader to read a simple XML file and render the results to the page.

Our example XML Customer List


Our example XML file looks like this, as you can:

<?xml version="1.0"?>
<customers>
    <customer id="10001" first="John" last="Smith" company="Donuts plc">[email protected]</customer>
    <customer id="10002" first="Rete" last="Bandy" company="This Is Bloggers Co.">[email protected]</customer>
    <customer id="10003" first="James" last="Bird" company="Timestone">[email protected]</customer>
    <customer id="10004" first="Sarah" last="McCauly" company="Automated Snowmen Ltd">[email protected]</customer>
    <customer id="10005" first="Pete" last="Rowan" company="Cooltec Consultants">[email protected]</customer>
</customers>


The XAML for this tutorial is very simple, we just have one listbox and is as follows:

<UserControl x:Class="XMLTutorial.Page"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Width="400" Height="300">
    <Grid x:Name="LayoutRoot" Background="White">
        <ListBox x:Name="customersList" Width="400" Height="200" />
    </Grid>
</UserControl>


In our XAML we have only one ListBox for this tutorial, all the processing is done in your C# code behind:

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 System.Xml;

namespace XMLTutorial
{
    public partial class Page : UserControl
    {
        public Page()
        {
            InitializeComponent();

            PopulateCustomersList();
        }

        private void PopulateCustomersList()
        {
            XmlReader reader = XmlReader.Create("Customers.xml");

            reader.MoveToContent();

            while (reader.Read())
            {
                if (reader.NodeType == XmlNodeType.Element && reader.Name == "customer")
                {
                    customersList.Items.Add(new ListBoxItem() { Content = reader.GetAttribute("last") +
                        ", " + reader.GetAttribute("first") + " (" + reader.ReadInnerXml() + ")" });
                }

                if (reader.NodeType == XmlNodeType.EndElement && reader.Name == "customers")
                {
                    break;
                }
            }

            reader.Close();
        }
    }
}


In the above code we enter a while loop reading each Customer element and outputting the First, Last names and email address.

Post your Comments

Post your Comments

 
 
Latest Games
Zombie Escape
Apr 19, 2016
Plays: 2,509

Zombie Escape ScreenshotDrive fast before the crazy mutant zombies get you!

6 Ratings/4.1 Average
Car Parking
Jan 16, 2016
Plays: 2,372

Car Parking ScreenshotGuide the car to its parking space in this fun Car Parking game.

1 Rating/5 Average
Trash It
Jan 11, 2016
Plays: 2,277

Trash It ScreenshotAim for the Trash Can and get the various items of Trash in the bin.

4 Ratings/5 Average
Sky Fly
Jan 11, 2016
Plays: 2,423

Sky Fly ScreenshotFly your plane in this colorful vertical scrolling shoot-em-up. Blast the bad guys and collect any bonus's they leave behind.

1 Rating/5 Average
Professor Snappy
Jan 11, 2016
Plays: 1,963

Professor Snappy ScreenshotPop as many bubbles as possible in this fun and colorful bubble popping game. The levels start off easy enough but gradually get harder!

1 Rating/5 Average
Monster Match Saga
Jan 10, 2016
Plays: 2,286

Monster Match Saga ScreenshotHere we have a bunch of monsters that need to be matched up. Look out for the bomb and spinning monsters that will cause special damage!

3 Ratings/4.6 Average
Fly Bird Fly
Jan 10, 2016
Plays: 2,113

Fly Bird Fly ScreenshotGuide your friendly Bird through the maze of pipes and other obstacles collecting the Stars in this cool arcade game inspired by the legendary Flappy Bird.

1 Rating/5 Average
Life In One
Jan 10, 2016
Plays: 2,286

Life In One ScreenshotYou are stranded on an Alien planet. Your goal is to build a space rocket and escape. Start by building units to create power and mine the metal patches. Build defenses to defend your base from the advancing Aliens and Zombies!

2 Ratings/3 Average
X Pool
Jan 02, 2016
Plays: 2,906

X Pool ScreenshotPlay Pool against the computer or battle against your friends in the online mode!

3 Ratings/3 Average
Fruit Slicer
Jan 02, 2016
Plays: 2,003

Fruit Slicer ScreenshotSlice the fruit that is thrown up onto the screen. Slice the fruit into multiple pieces for maximum points!

1 Rating/5 Average