Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there Delphi's ActionManager alternative in Visual Studio

I am relatively new to VS and C# but have years of experience in Delphi. One of the my favorite components when designing GUI in Delphi is ActionManager - centralized way to assign event handlers for actions as well as enabling/disabling them. Surprisingly, I can't find anything like this in Visual Studio 2008 Professional. I am sure that there should be third party implementations but I'd prefer something standard.

Can anybody suggest me something for this? Maybe there is some alternate way to effectively manage GUI actions that I am missing?

like image 560
koldovsky Avatar asked Jul 29 '09 17:07

koldovsky


1 Answers

In WPF there are Commands, which are conceptually similar.

like image 147
Craig Stuntz Avatar answered Sep 23 '22 02:09

Craig Stuntz