We're currently using Delphi 5 and Delphi 2005 for development, and investigate of going the .NET route via Delphi Prism.

Is there a .NET equivalent to Delphi's ActionList?

For those not familiar with ActionList, it's a component that contains a collection of actions that we create, e.g. Save, Refresh, Load, etc. Each action can have a caption, image, enable/disable assign to it. After that, you can assign a button to an action, and the button will inherit the action's caption, image, etc, and if you UI has the save action available as both a menu item and a button, they can both use the same action.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

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

link|improve this answer
WPF's ICommand is slightly different from TActionList (lack of certain features in fact). – Lex Li May 6 at 12:00
feedback

Yes, there is: Crad's Actions.

That is a CodeProject page describing, and hosting the original source code. The code link on the original author's page is broken.

It's a shame Microsoft doesn't adopt them.


enter image description here

enter image description here

link|improve this answer
1  
I created a fork of that project and published NuGet package for it a week ago, lextm.com/2012/04/packaging-crads-actionlist-for-net-via.html – Lex Li May 6 at 11:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.