Click here to Skip to main content
15,892,697 members
Articles / Programming Languages / C#

ContainerListView and TreeListView: Writing VS.NET design-surface compatible controls

Rate me:
Please Sign up or sign in to vote.
4.77/5 (144 votes)
13 Jan 2003CPOL17 min read 841.4K   22.2K   339  
Learn how to properly integrate your custom .NET control into the Visual Studio .NET design environment with TypeConverters and UITypeEditors. The article includes two useful controls, a container ListView, and a complete, feature-loaded TreeListView.
Microsoft Visual Studio Solution File, Format Version 7.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExtendedListViews", "ExtendedListViews.csproj", "{36202DE0-590A-43D4-A99D-55412CAD71C8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExtendedListTest", "..\ExtendedListTest\ExtendedListTest.csproj", "{F4711416-DE3E-4D0F-8B1C-15A5F9CB98D3}"
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		ConfigName.0 = Debug
		ConfigName.1 = Release
	EndGlobalSection
	GlobalSection(ProjectDependencies) = postSolution
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{36202DE0-590A-43D4-A99D-55412CAD71C8}.Debug.ActiveCfg = Debug|.NET
		{36202DE0-590A-43D4-A99D-55412CAD71C8}.Debug.Build.0 = Debug|.NET
		{36202DE0-590A-43D4-A99D-55412CAD71C8}.Release.ActiveCfg = Release|.NET
		{36202DE0-590A-43D4-A99D-55412CAD71C8}.Release.Build.0 = Release|.NET
		{F4711416-DE3E-4D0F-8B1C-15A5F9CB98D3}.Debug.ActiveCfg = Debug|.NET
		{F4711416-DE3E-4D0F-8B1C-15A5F9CB98D3}.Debug.Build.0 = Debug|.NET
		{F4711416-DE3E-4D0F-8B1C-15A5F9CB98D3}.Release.ActiveCfg = Release|.NET
		{F4711416-DE3E-4D0F-8B1C-15A5F9CB98D3}.Release.Build.0 = Release|.NET
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
	EndGlobalSection
	GlobalSection(ExtensibilityAddIns) = postSolution
	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
Architect
United States United States
Jon Rista has been programming since the age of 8 (first Pascal program), and has been a programmer since the age of 10 (first practical program). In the last 21 years, he has learned to love C++, embrace object orientation, and finally enjoy the freedom of C#. He knows over 10 programming languages, and vows that his most important skill in programming is creativity, even more so than logic. Jon works on large-scale enterprise systems design and implementation, and employs Design Patterns, C#, .NET, and SQL Server in his daily doings.

Comments and Discussions