NemoStein
NemoStein

Reputation: 2098

Creating a WPF Hybrid Control (TreeView + DataGrid = DataTreeGrid)

I need to create a TreeView that hold synchronized data, like a DataGrid.

To clarify, take a look at this image:
DataTreeGrid Custom Control

So, I have a TreeView at left side with columns at right side.
The data will come from objects like this:

public NodeData Parent;
public List<NodeData> Children;

public String Label;

public Boolean DataA;
public Boolean DataB;
public Boolean DataC;
public Boolean DataX;
public Boolean DataY;
public Boolean DataZ;

How can I create this?

Upvotes: 18

Views: 34922

Answers (3)

Wegged
Wegged

Reputation: 2423

This blog entry from Marius Rochon may help you.

Upvotes: 7

Johan Larsson
Johan Larsson

Reputation: 17580

This is the best control I have found for presenting data like this. It does not require an interface/basclass on the viemodels and uses HierarchicalDataTemplate

Upvotes: 2

Rachel
Rachel

Reputation: 132568

To me this looks like a regular DataGrid with a few Groupings set on it

So in your case you would create a DataGrid that groups on Root, Node #, Node 2nd Number, and Node 3rd Number.

Also flatten your list of NodeData so it is a single list with each item containing properties for Root, NodeLevel1, NodeLevel2, and NodeLevel3

Upvotes: 1

Related Questions