Is .NET the equivalent of a Delphi ActionList?

We are currently using Delphi 5 and Delphi 2005 for development and are exploring the .NET transition through Delphi Prism.

Is there a .NET equivalent for a Delphi ActionList?

For those unfamiliar with ActionList, this is a component that contains a collection of actions that we create, for example. Save, update, load, etc. Each action can have a title, image, enable / disable its purpose. After that, you can assign a button to an action, and the button inherits the action label, image, etc., And if the user interface has a save action, available both as a menu item and a button, they can use the same action.

+6
delphi
source share
3 answers

WinForms does not have such a thing, but WPF executes its commands. See http://www.microsoft.com/belux/msdn/nl/community/columns/jdruyts/wpf_commandpattern.mspx

+2
source share

You can also see Actions for .NET WinForms . Among other things, it allows you to classify actions using a Delphi-like method and has the ability to execute and / or update them asynchronously.

+3
source share

Yes there are: Actions Crad .

This is the CodeProject page that describes and places the source code. link to the code on the original page of the author is broken.

Microsoft's shame does not accept them.


enter image description here

enter image description here

+2
source share

All Articles