Dimitris
Dimitris

Reputation: 2036

Enabling/Disabling menu items

For any windows application there is a requirement to enable or disable menu items and buttons based on certain properties of a selected object. What are the design patterns you have employed to do that? I am currently developing an application that contains a number of projects and will require hundreds of menu items to change based on specific properties of each project. I am thinking to have a method that essentially goes through each menu item and checks the project properties. Any other ideas to suggest?

Just to clarify, I am talking about a c# winforms application.

Upvotes: 3

Views: 1336

Answers (1)

Sander van Knippenberg
Sander van Knippenberg

Reputation: 392

There's a nice article about it here: http://msdn.microsoft.com/en-us/magazine/cc188928.aspx

Upvotes: 2

Related Questions