Click here to Skip to main content
15,891,951 members
Articles / Desktop Programming / Windows Forms

Hierarchical TreeView Control with Data Binding Enabled

Rate me:
Please Sign up or sign in to vote.
4.46/5 (17 votes)
27 Mar 2005CPOL3 min read 278.8K   6.9K   82  
The control extends standard TreeView control to make it fully data bind.
/********************************************************************
	created:	2005/03/27
	created:	27:3:2005   7:05
	filename: 	AssemblyInfo.cs	
	author:		Mike Chaliy
	
	purpose:	General assembly information.
*********************************************************************/
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; 

[assembly: AssemblyTitle("Chaliy.Windows.Forms")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Mike Chaliy")]
[assembly: AssemblyProduct("Chaliy.Windows.Forms")]
[assembly: AssemblyCopyright("(c)Mike Chaliy 2005")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]		

[assembly: AssemblyVersion("1.0.*")]

[assembly: ComVisible(false)]
[assembly: CLSCompliant(true)]

[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
[assembly: AssemblyKeyName("")]

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
Ukraine Ukraine

Comments and Discussions