Is there any way to make a user interface in WPF that replicates the following diagram?
The idea was to have a control with three possible directions. In this control users could select the direction they want to add a new point.
For saving the point informations I was planning on using a structure like this:
private Node root;
public class Node
{
public int Key;
public string Value;
public Node left, right, forward;
//....
}