Click here to Skip to main content
15,896,118 members
Articles / Desktop Programming / Windows Forms

Simple Asynchronous Background Task Processing with Progress Dialog (Silverlight Solution)

Rate me:
Please Sign up or sign in to vote.
4.91/5 (15 votes)
21 Apr 2010CPOL8 min read 49.5K   1.1K   46  
Small, generic, reusable infrastructure for running tasks asynchronously and displaying progress information.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SilverlightApplication1", "SilverlightApplication1\SilverlightApplication1.csproj", "{12733CE4-47E3-4D38-B497-9A5C5CCA76AE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SilverlightApplication1.Web", "SilverlightApplication1.Web\SilverlightApplication1.Web.csproj", "{A0825488-AB8C-41C7-BBA8-C43A6FDEB3BE}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AsyncOperation", "AsyncOperation\AsyncOperation.csproj", "{0C821484-B035-4BCB-A103-5407E5B760BF}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{12733CE4-47E3-4D38-B497-9A5C5CCA76AE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{12733CE4-47E3-4D38-B497-9A5C5CCA76AE}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{12733CE4-47E3-4D38-B497-9A5C5CCA76AE}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{12733CE4-47E3-4D38-B497-9A5C5CCA76AE}.Release|Any CPU.Build.0 = Release|Any CPU
		{A0825488-AB8C-41C7-BBA8-C43A6FDEB3BE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{A0825488-AB8C-41C7-BBA8-C43A6FDEB3BE}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{A0825488-AB8C-41C7-BBA8-C43A6FDEB3BE}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{A0825488-AB8C-41C7-BBA8-C43A6FDEB3BE}.Release|Any CPU.Build.0 = Release|Any CPU
		{0C821484-B035-4BCB-A103-5407E5B760BF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{0C821484-B035-4BCB-A103-5407E5B760BF}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{0C821484-B035-4BCB-A103-5407E5B760BF}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{0C821484-B035-4BCB-A103-5407E5B760BF}.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
Software Developer (Senior)
Ireland Ireland
.NET Developer.

Comments and Discussions