![]() |
Desktop Development »
Miscellaneous »
Miscellaneous Controls
Intermediate
NavigationTree ControlBy Jürgen Müller (jmse)A control providing a different kind of navigation in your app. |
C#, Windows, .NET 2.0VS2005, Dev
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||

This control provides a new kind of navigation for your applications. It uses the TreeNodes of a TreeView to offer functionality to the user.
I saw this control in a commercial application, and I liked the look and feel and the possibilities it gives to the programmer. Because I didn't see such a control anywhere else, I decided to develop one on my own and use it in one of my projects. I hope others like my NavigationTree, too.
When using a NavigationTree, you have to define categories and items. Categories are represented by NavigationCategory objects, and items are represented by NavigationItem objects. Each item is owned by a category, and the categories are owned by the NavigationTree. Items can be organized hierarchically.

Use categories to represent different parts of your application (like 'Customers', 'Manufacturers', 'Stock', an so on), and items to represent topics within a category (like 'customer list', 'search customer', 'new customer'). When a category is selected, its items will be displayed and the category header will be set.
When an item is selected, an event will be fired and your app can react on this event (e.g., display the customer list). You can use ImageLists to assign icons to NavigationItems and NavigationCategorys.

At the moment, NavigationCategorys and NavigationItems can only be added by code at runtime:
NavigationCategory c1 = new NavigationCategory("Customers", 0);
c1.Name = "catCustomer";
NavigationItem i = new NavigationItem("Master Data", 0);
i.AddChild(new NavigationItem("Customer List", 1));
i.AddChild(new NavigationItem("Details", 2));
c1.AddItem(i);
c1.AddItem(new NavigationItem("Orders", 3));
c1.AddItem(new NavigationItem("Invoices", 4));
navigationTree1.AddCategory(c1);
Add delegates to be informed when a NavigationItem is going to be selected, a NavigationItem has been selected, or a NavigationCategory has been selected:
// NavigationCategory has been selected
navigationTree1.OnCategorySelected += new
CategorySelected(navigationTree1_OnCategorySelected);
// NavigationItem is going to be selected
navigationTree1.OnBeforeItemSelect += new
BeforeItemSelect(navigationTree1_OnBeforeItemSelect);
// NavigationItem has been selected
navigationTree1.OnItemSelected += new
ItemSelected(navigationTree1_OnItemSelected);
You can select NavigationItems by code:
// select a NavigationItem and fire
// BeforeItemSelect and ItemSelected events
myNavItem.Select();
// select a NavigationItem without fireing events (silent mode)
myNavItem.Select(false);
You can change the Text property of a NavigationItems by code:
// change the visible text of a NavigationItem...
myNavItem.Text = "a new text";
// ...and update this NavigationItem in the NavigationTree
myNavItem.Refresh();
I improved the NavigationTree step by step, as more functionality was needed in my project, so some parts of the source look rather wild and are not well documented. I'm going to improve the source when posting future versions. Suggestions, improvements, and bug reports are welcome.
| You must Sign In to use this message board. | ||||||||
|
||||||||
|
||||||||
|
||||||||
|
||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 28 Mar 2006 Editor: Smitha Vijayan |
Copyright 2006 by Jürgen Müller (jmse) Everything else Copyright © CodeProject, 1999-2009 Web22 | Advertise on the Code Project |