Click here to Skip to main content
Click here to Skip to main content

Populate TreeView Menu with XML

By , 10 Sep 2009
 

Introduction

Creating treeview menus on the fly from an XML file can be useful when the menu items are constantly being updated. For instance, when using an XML file as a database to store records in.

Here is a simple example of how to do this. The example is kept simple to avoid any confusion.

Background

A working knowledge of XML, the TreeView control, and the Visual Studio is helpful in understanding the steps.

Using the code

Note: The attached solution file (xml2treeviewmenuSolution) was created with VS2010.

Add an XML file to your project and name it "menu.xml". Edit the XML file with the menu items.

<?xml version="1.0" encoding="utf-8" ?>
<root>
<folder title='folder 1a' >
<record title='record 1a1' />
<record title='record 1a2' />
<folder title='folder 1b'>
<record title='record 1b1' />
</folder>
</folder>
<folder title='folder 2a' >
<record title='record 2a1' />
</folder>
<folder title='folder 3a' >
<record title='record 3a1' />
<record title='record 3a2' />
</folder>
</root>

Drag the TreeView control from the Visual Studio Toolbox onto your Windows form. In this example, I named the control "treeViewMenu".

Add references to the XML classes in your using statements.

using System.Xml;
using System.Xml.XPath;    

Create an XML document to hold the file.

public partial class Form1 : Form
{
    private XmlDocument docXML = new XmlDocument();

When the form is loaded, load the XML document with the XML file and begin populating the TreeView control.

private void Form1_Load(object sender, EventArgs e)
{
    docXML.Load("menu.xml"); // Load the xml file
    populateBaseNodes(); // Populate all of the base nodes
}

Population begins with the first level <folder> nodes. After each base node is added to the tree, the child nodes for the current base node are added.

private void populateBaseNodes()
{
    treeViewMenu.Nodes.Clear(); // Clear any existing items
    treeViewMenu.BeginUpdate(); // Begin updating the treeview
    TreeNode treenode;
    treenode = treeViewMenu.Nodes.Add("Folders");
    
    XmlNodeList baseNodeList = docXML.SelectNodes("root/folder");
    // Get all first level <folder> nodes

    foreach (XmlNode xmlnode in baseNodeList)
    // loop through all base <folder> nodes 
    {
        string title = xmlnode.Attributes["title"].Value;

        treenode = treeViewMenu.Nodes.Add(title); // add it to the tree

        populateChildNodes(xmlnode, treenode); // Get the children
    }

    treeViewMenu.EndUpdate(); // Stop updating the tree
    treeViewMenu.Refresh(); // refresh the treeview display
}

Each child node will be inspected for further children. The loop will called for each child node that was found.

private void populateChildNodes(XmlNode oldXmlnode, TreeNode oldTreenode)
{
    TreeNode treenode = null;
    XmlNodeList childNodeList = oldXmlnode.ChildNodes;
    // Get all children for the past node (parent)

    foreach (XmlNode xmlnode in childNodeList)
    // loop through all children
    {
        string title = xmlnode.Attributes["title"].Value;
        // add it to the parent node tree
        treenode = oldTreenode.Nodes.Add(title);
        populateChildNodes(xmlnode, treenode); 
    }
}

Points of interest

Fancy up your menu using an image list and add an icon attribute to your menu file.

License

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

About the Author

ralph1957
Software Developer (Senior)
Germany Germany
Member
I am an american living in Germany.
 
I've been professionaly engaged in computer technology and programming for over 25 years.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionplease readmemberahmed youness1115 Sep '12 - 3:35 
QuestionDon't Work Pleasememberahmed youness1128 Aug '12 - 5:57 
GeneralRe: Don't Work PleasememberEgyptianRobot28 Aug '12 - 6:28 
GeneralRe: Don't Work Pleasememberahmed youness111 Sep '12 - 16:09 
GeneralRe: Don't Work PleasememberEgyptianRobot2 Sep '12 - 1:06 
GeneralRe: Don't Work Pleasememberahmed youness119 Sep '12 - 8:46 
GeneralRe: Don't Work PleasememberEgyptianRobot9 Sep '12 - 9:43 
GeneralRe: Don't Work Pleasememberahmed youness1111 Sep '12 - 14:44 
AnswerRe: Don't Work Pleasememberralph195710 Sep '12 - 3:23 
GeneralRe: Don't Work Pleasememberahmed youness1112 Sep '12 - 6:53 
GeneralRe: Don't Work Pleasememberralph195712 Sep '12 - 7:58 
GeneralRe: Don't Work Pleasememberahmed youness1112 Sep '12 - 10:40 
GeneralRe: Don't Work Pleasememberahmed youness1112 Sep '12 - 11:38 
GeneralThanks! my vote 5!memberGrG9 May '12 - 8:31 
GeneralMy vote of 5memberwinuk14 Dec '11 - 1:35 
GeneralThanksmemberjamesyla2 Nov '09 - 18:11 
GeneralMy vote of 1memberManas Bhardwaj11 Sep '09 - 0:20 
GeneralRe: My vote of 1memberAnt210013 Dec '09 - 1:50 
GeneralRe: My vote of 1memberjyothi_m0331 Aug '12 - 18:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 11 Sep 2009
Article Copyright 2009 by ralph1957
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid