Click here to Skip to main content
15,881,281 members
Articles / Desktop Programming / Windows Forms

Vista Style Address Bar for .NET 2.0/WinForms

Rate me:
Please Sign up or sign in to vote.
4.77/5 (12 votes)
10 Apr 2010CPOL2 min read 71K   2.4K   83   16
WinForms version of the Vista style address bar that can be extended to support more than just browsing the file system.
abe.png

Introduction

Whilst Windows Vista still sits in amidst much controversy and discussion, a few of the features/changes it implemented have been quite cool. However, Microsoft failed to really let slide some of the cool UI changes down to us normal (or student) developers.

This article/code sample contains a personal implementation of the Vista-Style address bar for use in .NET/WinForms applications. It's based around a simple Tree/Node traversal that can be inherited to browse whatever you like.

Included in the demo is an example implementation that browses the file system tree, though it is limited in functionality (it was only made to illustrate how it all works :)).

Using the Code

The easiest way to understand the code is to download it and open it and have a play about.

The simplest way to use the bar is to drop it onto your form in Design view, then in the constructor of your form add the following code:

C#
//Initialize the bar with a root node type.
this.AdBar.InitializeRoot(new FileSystemNode());

All you need to do is pass it a root node, and the node itself should provide the information directly to the control. The FileSystemNode provides a basic enumeration of the first logical drive found on your Windows Install.

To implement the IAddressNode class, there are a few simple Properties to override and implement, then three real methods to implement yourself:

  • UpdateNode() - Used to update the node itself for any changes (e.g. in the FileSystemNode it checks for child folder changes and folder name changes)
  • GetChild() - Searches for a given child node based on a unique ID (A Unique ID being whatever you define it as. In FileSystemNode, we use an absolute path for a folder as the unique ID).
  • Clone() - Clones a given node as a separate value copy (rather than just by reference).

Conclusion

It's simple and relatively lightweight, it just needs you to implement your own IAddressNode derivatives to let it traverse any hierarchical structure you see fit. :)

History

  • 7/3/2009 - First upload of code to CodeProject
  • 29/12/2009 - Version 2.0 Supporting "My Computer" root node and VS2008, various bug fixes
  • 10/4/2010 - Version 2.1 Fix to overflow behaviour to make use of available space better. Slight optimization to overflow generation.

License

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



Comments and Discussions

 
GeneralOverflow problems Pin
see_seA1-Mar-10 11:14
see_seA1-Mar-10 11:14 
GeneralRe: Overflow problems Pin
User 338124710-Apr-10 4:20
User 338124710-Apr-10 4:20 
GeneralRe: Overflow problems Pin
User 338124710-Apr-10 6:09
User 338124710-Apr-10 6:09 
I've submitted an update today that incorporates your bug-fix, and an additional one to fix the second problem you mentioned.

Please let me know if you have any further problems!

modified 12-Sep-20 21:01pm.

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.