Click here to Skip to main content
15,895,084 members
Articles / Programming Languages / C#

Creating a Multi-Page Windows Forms Control with Design Time Support

Rate me:
Please Sign up or sign in to vote.
4.59/5 (69 votes)
1 Apr 2009CPOL16 min read 261.2K   12.9K   269  
A step-by-step guide to creating a control and adding design time support to it
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestApp", "TestApp\TestApp.csproj", "{B1A85751-9873-4197-8557-0E6B59F265E0}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ControlLibrary", "ControlLibrary\ControlLibrary.csproj", "{449BEEFB-E1DB-47F4-81F5-E559C8398C77}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{B1A85751-9873-4197-8557-0E6B59F265E0}.Debug.ActiveCfg = Debug|.NET
		{B1A85751-9873-4197-8557-0E6B59F265E0}.Debug.Build.0 = Debug|.NET
		{B1A85751-9873-4197-8557-0E6B59F265E0}.Release.ActiveCfg = Release|.NET
		{B1A85751-9873-4197-8557-0E6B59F265E0}.Release.Build.0 = Release|.NET
		{449BEEFB-E1DB-47F4-81F5-E559C8398C77}.Debug.ActiveCfg = Debug|.NET
		{449BEEFB-E1DB-47F4-81F5-E559C8398C77}.Debug.Build.0 = Debug|.NET
		{449BEEFB-E1DB-47F4-81F5-E559C8398C77}.Release.ActiveCfg = Release|.NET
		{449BEEFB-E1DB-47F4-81F5-E559C8398C77}.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
Software Developer
Russian Federation Russian Federation
Kirill Osipov constantly lives in Petrozavodsk, Russia. He enjoys listening to music, playing the guitar, learning German, and, occasionally, drinking beer and whisky.

He is extremely passionate about software development and has recently realized he can be most creative in this particular field.

He also maintains his part time business at http://www.ko-sw.com.

Comments and Discussions