C # Tree / MindMap GUI

I am trying to research some gui technologies for C # where I can display a tree structure (as opposed to the standard one provided).

Essentially, I want gui to draw a data tree (as if you were going to draw a binary tree on a piece of paper or something like that). Then each of the nodes can be clicked.

If this is not available, does anyone know of something where I can have a GUI such as mindmap that shows links between elements and those that can be clicked?

I can guess what people will say, do it yourself, and in this case I give up already;) This is too advanced for me, and since I am in the workplace, I do not think that I will be given time to do this, as there are more pressing issues to get started, as if this makes the program work!

thanks

+7
user-interface c #
source share
2 answers

You can take a look at the controls in Kevin WPF Bag-o-Tricks , which has a WPF layout map style style. Here is a good example. If you want to use more professional components, look at the Nevron Software product , they have excellent control. There is also an open source WPF graphics editor library - graphsharp (with which I have no experience, but I found a good Sacha Barber article ). Since it is used in nDepend, it should be quite mature.

Hope you get inspired from these links :)

+6
source share

I also found the XMind API for C # https://xmindapi.codeplex.com/

It is free and looks easy to use.

+1
source share

All Articles