Anyone have an idea for how to implement a Longhorn style "breadcrumb bar" in C# for Windows Forms Basically, the idea is:
- A parent window that can spawn child windows of the same style. The child windows will append their title/location to the breadcrumb bar. (i.e. "Parent Title -> Child Title")
- If you click on one of the crumbs in it you navigate to that location in-place (like most web page breadcrumb bars)
- When you mouse over the crumbs, the right pointing arrow turns to a down pointing one. Clicking on it gives you a popup menu of other locations at that level with the current one highlighted in bold.
The idea is to make navigation of an inductive user interface stateful.
Here is an <a href="http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnaero/html/cb_recipe_patientdb.asp">example</a>
Thanks,
Mark Richman

Longhorn style Breadcrumb Bar
CMCFelix
fcsobel
My idea is to place an extender on an existing form, the extender will change the form theme to one similar in Longhorn, the extender also must implementing the additional controls that the form have (the back button, next button, 2 titles (main, and sub (I must convert the sub title to a “breadcrumb” once I know who it exactly works), the search button, and 2 additional custom buttons).
But all of that may take about a month, because I am developing more than one control at the same time.
Dan Straw
This is of course the idea, it’s still not working yet :)
This idea may also increase the size of the form dramatically, because one form basically will store all the sub forms as tabs, I may change that later to let the user link the tree with existing forms, and the forms will be open when necessary, but this means more code from my side, and maybe more problems with the implementation.
Anyway, I still have a month to try; my personal deadline is before the end of this year.
GlennG
If you look at that PatientDB Longhorn example, you'll see its not a web app.
aminoplacid
- To exactly replicate the Longhorn breadcrumb bar looks like it would involve alot of owner draw stuff, so I was going to cheat and create a control that manages a alternating set of LinkLabels and PictureBoxes with arrows in them left-docked within a panel. The LinkLabels would also have context menus. If I feel adventerous I'll add left-right scrolling too.
- I'm thinking I'll do the "pages" instantiating User Controls at runtime.
- For the objects that tie these two together, I'm hoping to find inspiration in the MSAvalon.Windows.Navigation namespace of the Longhorn SDK.
http://longhorn.msdn.microsoft.com/ //longhorn.msdn.microsoft.com/lhsdk/ref/msavalon.windows.navigation.aspx