Click here to Skip to main content
15,885,309 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I want to loop through all menu items and put the items to treeview. I used following code for this purpose.

inforamtion
I have Transaction Menu and it has a Purchase Menu and purchase menu have
(Purchase invoice, Good Receive Note, etc). I want to get this items to treeview, under transaction, should have purchase and under purchase should have purchase invoice and good receive note

How can I do this..?

Please help me.

Thanks

C#
private void GetControlByName()     
{
    for (int i = 0; i < this.menuStrip1.Items.Count; i++)
    {
        string mnuItemName = this.menuStrip1.Items[i].Text;
        Tree.Nodes.Add("", mnuItemName, 0, 2);
        ToolStripMenuItem tmpMenuItem = this.menuStrip1.Items[i] as ToolStripMenuItem;
        
        for (int j = 0; j < tmpMenuItem.DropDownItems.Count; j++)
        {
            string menuSubItem = tmpMenuItem.DropDownItems[j].Text;
            if (menuSubItem != "")
            {
                Tree.Nodes[i].Nodes.Add("", menuSubItem, 1, 2);


            }
        }
    }
    Tree.ExpandAll();
}
Posted
Updated 20-Sep-12 10:20am
v5

1 solution

 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900