Reputation: 573
I need to work with the Property Sheet of a project. I followed instruction on msdn to try to find Property Manager under View, but I do not see Property Manager as a menu option under Tool. I only saw Property Pages and Properties Window. I tried both options but they do not seem to be where I can create a property sheet. My Visual Studio version is as follows: Microsoft Visual Studio 2010, Version 10.0.40219.1 SP1Rel Microsoft .NET Framework Version 4.0.30319 SP1Rel. Can anyone please give a pointer? Thanks.
Upvotes: 43
Views: 82854
Reputation: 76
View > Property Manager or View > Other Windows > Property Manager, please try this
Upvotes: 2
Reputation: 29450
This is how I restored the Property Manager menu item in Visual Studio 2013:
Upvotes: 7
Reputation: 1
Since none of the given answers worked for me here are my two cents.
Like any well hidden menu in Visual Studio this one can be found by opening Tools -> Options... -> Environment -> Keyboard
and searching for "View.PropertyManager". There you can give it a global shortcut. While this only helps if you know the name of the menu or command you are looking for it's much faster go through a bunch of guesses this way than by randomly browsing menus.
Upvotes: 0
Reputation: 51
Property Manager is a moot utility now. Since the property sheet is defined for each project, it can be edited by right clicking on the project and selecting properties. If you need to edit multiple projects once, just select all the projects you want to effect a change and do the right clicking trick. This brings up the same property pages as it would from Property Manager.
Upvotes: 2
Reputation: 51
Despite I selected Visual C# settings at first use, for some reason, VC++ settings were ON, causing the visual components property window to not show up while pressing F4. Selecting Visual C# settings ( in Tools | Import and export settings... | Reset All ) made it work.
Upvotes: 1
Reputation: 997
In my case it was just in the VIEW toolbar - almost in the bottom. Running VS2013 Pro update 3
Upvotes: 2
Reputation: 13908
None of the above answers worked for me. What worked for me is:
Tools -> Import and Export Settings -> Reset all settings -> ... -> Visual C++ Development Settings
Upvotes: 1
Reputation: 199
To see the Property Manager you need to have Expert Settings enabled. You can find this option in:
Tools -> Settings
Upvotes: 19
Reputation: 78320
Try resetting your View
menu, Property Manager
should indeed be there.
Tools
-> Customize
.Commands
tab.Menu bar:
button, and in the dropdown menu select View
Reset All
and confirm.This should restore Property Manager
to your View
menu.
Upvotes: 25