Click here to Skip to main content
15,891,976 members
Articles / Desktop Programming / WPF

XNA & Beyond: The Path to VS 2008

Rate me:
Please Sign up or sign in to vote.
4.91/5 (72 votes)
4 Jan 2010CPOL22 min read 276.6K   1.5K   86  
The article shows how to embed a XNA-based game into a WinForms control with ease. Also, it explains how to integrate an XNA GS project into VS2008 (this IDE is not currently supported by XNA GS), and in turn, to be able to use WPF with your XNA-based creation.

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedGameLibrary", "SharedXnaGameLibrary\SharedGameLibrary.csproj", "{B76F7C56-7D88-44A6-9C4D-A1AA17B339F1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XnaGameInWinWpfWindow", "XnaGameInWinWpfWindow\XnaGameInWinWpfWindow.csproj", "{E7CC62B0-D58C-42D1-83E3-F5CE11434118}"
	ProjectSection(ProjectDependencies) = postProject
		{B76F7C56-7D88-44A6-9C4D-A1AA17B339F1} = {B76F7C56-7D88-44A6-9C4D-A1AA17B339F1}
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XnaGameInWinForm", "XnaGameInWinForm\XnaGameInWinForm.csproj", "{8DE5F723-D70C-417F-BFEF-430CAA4683C8}"
	ProjectSection(ProjectDependencies) = postProject
		{B76F7C56-7D88-44A6-9C4D-A1AA17B339F1} = {B76F7C56-7D88-44A6-9C4D-A1AA17B339F1}
	EndProjectSection
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|x86 = Debug|x86
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{B76F7C56-7D88-44A6-9C4D-A1AA17B339F1}.Debug|x86.ActiveCfg = Debug|x86
		{B76F7C56-7D88-44A6-9C4D-A1AA17B339F1}.Debug|x86.Build.0 = Debug|x86
		{B76F7C56-7D88-44A6-9C4D-A1AA17B339F1}.Release|x86.ActiveCfg = Release|x86
		{B76F7C56-7D88-44A6-9C4D-A1AA17B339F1}.Release|x86.Build.0 = Release|x86
		{E7CC62B0-D58C-42D1-83E3-F5CE11434118}.Debug|x86.ActiveCfg = Debug|x86
		{E7CC62B0-D58C-42D1-83E3-F5CE11434118}.Debug|x86.Build.0 = Debug|x86
		{E7CC62B0-D58C-42D1-83E3-F5CE11434118}.Release|x86.ActiveCfg = Release|x86
		{E7CC62B0-D58C-42D1-83E3-F5CE11434118}.Release|x86.Build.0 = Release|x86
		{8DE5F723-D70C-417F-BFEF-430CAA4683C8}.Debug|x86.ActiveCfg = Debug|x86
		{8DE5F723-D70C-417F-BFEF-430CAA4683C8}.Debug|x86.Build.0 = Debug|x86
		{8DE5F723-D70C-417F-BFEF-430CAA4683C8}.Release|x86.ActiveCfg = Release|x86
		{8DE5F723-D70C-417F-BFEF-430CAA4683C8}.Release|x86.Build.0 = Release|x86
		{35B81AD5-6075-45D7-8848-658A98E70F02}.Debug|x86.ActiveCfg = Debug|x86
		{35B81AD5-6075-45D7-8848-658A98E70F02}.Release|x86.ActiveCfg = Release|x86
	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) Free-lance Developer
Uruguay Uruguay

Comments and Discussions