Click here to Skip to main content
15,885,141 members
Articles / Desktop Programming / WPF

WPF Menu using ViewModel - Part 1

Rate me:
Please Sign up or sign in to vote.
4.63/5 (11 votes)
18 Jun 2009CPOL4 min read 79.5K   2.8K   29  
Implementation of WPF menus using View Model approach

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MenuItemViewModelSample", "MenuItemViewModelSample\MenuItemViewModelSample.csproj", "{DD7CE34E-B6DF-47DD-89B0-30F55452FFDC}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MenuViewModel", "MenuViewModel\MenuViewModel.csproj", "{5C022A54-5924-406B-B068-78B2EDC39648}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MenuBusinessObjects", "MenuBusinessObjects\MenuBusinessObjects.csproj", "{5890A2FE-05FA-47EB-9DC5-7A75AB2295F9}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{DD7CE34E-B6DF-47DD-89B0-30F55452FFDC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{DD7CE34E-B6DF-47DD-89B0-30F55452FFDC}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{DD7CE34E-B6DF-47DD-89B0-30F55452FFDC}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{DD7CE34E-B6DF-47DD-89B0-30F55452FFDC}.Release|Any CPU.Build.0 = Release|Any CPU
		{5C022A54-5924-406B-B068-78B2EDC39648}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{5C022A54-5924-406B-B068-78B2EDC39648}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{5C022A54-5924-406B-B068-78B2EDC39648}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{5C022A54-5924-406B-B068-78B2EDC39648}.Release|Any CPU.Build.0 = Release|Any CPU
		{5890A2FE-05FA-47EB-9DC5-7A75AB2295F9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{5890A2FE-05FA-47EB-9DC5-7A75AB2295F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{5890A2FE-05FA-47EB-9DC5-7A75AB2295F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{5890A2FE-05FA-47EB-9DC5-7A75AB2295F9}.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) Multi National
India India
I'm a C# developer with a multinational company. Recently started working on wpf and i'm hooked to it completely now.

Comments and Discussions