Click here to Skip to main content
15,891,184 members
Articles / Programming Languages / C#

Edit State aware Form with customizable controls

Rate me:
Please Sign up or sign in to vote.
4.11/5 (5 votes)
1 Feb 20055 min read 54.1K   424   35  
Reuseable form class, including typical modal buttons that detect any edit changes on any control on the form and sets form state to dirty, enabling OK and Apply buttons.
Microsoft Visual Studio Solution File, Format Version 8.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FormEditState", "FormEditState\FormEditState.csproj", "{A5318465-DBF5-4450-AA64-AD5D2F7DB791}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestHarness", "TestHarness\TestHarness.csproj", "{44965975-D853-4CF8-8175-569332C19528}"
	ProjectSection(ProjectDependencies) = postProject
	EndProjectSection
EndProject
Global
	GlobalSection(SourceCodeControl) = preSolution
		SccNumberOfProjects = 3
		SccLocalPath0 = .
		CanCheckoutShared = false
		SolutionUniqueID = {976B74F4-4F94-4643-91EA-4BA85F62FEDB}
		SccProjectUniqueName1 = FormEditState\\FormEditState.csproj
		SccLocalPath1 = .
		CanCheckoutShared = false
		SccProjectFilePathRelativizedFromConnection1 = FormEditState\\
		SccProjectUniqueName2 = TestHarness\\TestHarness.csproj
		SccLocalPath2 = .
		CanCheckoutShared = false
		SccProjectFilePathRelativizedFromConnection2 = TestHarness\\
	EndGlobalSection
	GlobalSection(SolutionConfiguration) = preSolution
		Debug = Debug
		Release = Release
	EndGlobalSection
	GlobalSection(ProjectConfiguration) = postSolution
		{A5318465-DBF5-4450-AA64-AD5D2F7DB791}.Debug.ActiveCfg = Debug|.NET
		{A5318465-DBF5-4450-AA64-AD5D2F7DB791}.Debug.Build.0 = Debug|.NET
		{A5318465-DBF5-4450-AA64-AD5D2F7DB791}.Release.ActiveCfg = Release|.NET
		{A5318465-DBF5-4450-AA64-AD5D2F7DB791}.Release.Build.0 = Release|.NET
		{44965975-D853-4CF8-8175-569332C19528}.Debug.ActiveCfg = Debug|.NET
		{44965975-D853-4CF8-8175-569332C19528}.Debug.Build.0 = Debug|.NET
		{44965975-D853-4CF8-8175-569332C19528}.Release.ActiveCfg = Release|.NET
		{44965975-D853-4CF8-8175-569332C19528}.Release.Build.0 = Release|.NET
	EndGlobalSection
	GlobalSection(SolutionItems) = postSolution
	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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here



Comments and Discussions