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: 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? 回答1: http://blogs.msdn.com/b/mrochon/archive