Click here to Skip to main content
15,891,943 members
Articles / Desktop Programming / WPF

A Graph Tree Drawing Control for WPF

Rate me:
Please Sign up or sign in to vote.
4.84/5 (34 votes)
23 Feb 2009CPOL10 min read 284.6K   9K   139  
This article describes and implements a graph drawing control for tree structures structured in a WPF panel.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TreeContainer", "TreeContainer\TreeContainer.csproj", "{88B86170-EC9F-4ACF-B96E-0F97C28F57BA}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TreeContainerTest", "TreeContainerTest\TreeContainerTest.csproj", "{A27B7BEF-B766-4807-BEA6-3F0F320C7D22}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VisLogTree", "VisLogTree\VisLogTree.csproj", "{D913CF17-3497-4489-A493-C619886D223B}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GraphLayout", "GraphLayout\GraphLayout\GraphLayout.csproj", "{FB8364B6-55D2-45B0-B173-E6308C19DD61}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{88B86170-EC9F-4ACF-B96E-0F97C28F57BA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{88B86170-EC9F-4ACF-B96E-0F97C28F57BA}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{88B86170-EC9F-4ACF-B96E-0F97C28F57BA}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{88B86170-EC9F-4ACF-B96E-0F97C28F57BA}.Release|Any CPU.Build.0 = Release|Any CPU
		{A27B7BEF-B766-4807-BEA6-3F0F320C7D22}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{A27B7BEF-B766-4807-BEA6-3F0F320C7D22}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{A27B7BEF-B766-4807-BEA6-3F0F320C7D22}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{A27B7BEF-B766-4807-BEA6-3F0F320C7D22}.Release|Any CPU.Build.0 = Release|Any CPU
		{D913CF17-3497-4489-A493-C619886D223B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{D913CF17-3497-4489-A493-C619886D223B}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{D913CF17-3497-4489-A493-C619886D223B}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{D913CF17-3497-4489-A493-C619886D223B}.Release|Any CPU.Build.0 = Release|Any CPU
		{FB8364B6-55D2-45B0-B173-E6308C19DD61}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{FB8364B6-55D2-45B0-B173-E6308C19DD61}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{FB8364B6-55D2-45B0-B173-E6308C19DD61}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{FB8364B6-55D2-45B0-B173-E6308C19DD61}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
I've been doing programming for close to 30 years now. I started with C at Bell Labs and later went to work for Microsoft for many years. I currently am a partner in Suckerpunch LLC where we produce PlayStation games (www.suckerpunch.com).

I am mainly interested in AI, graphics and more mathematical stuff. Dealing with client/server architectures and business software doesn't do that much for me. I love math, computers, hiking, travel, reading, playing piano, fruit jars (yes - I said fruit jars) and photography.

Comments and Discussions