Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
585 views

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 ...
2
votes
1answer
324 views

Delphi: How can I add a new category in ActionManager?

I'd like my actions to be organized in categories, but in the "Categories" box, I can't add a new category. When I click add standard action, it has different categories like "Edit", "Internet",... . ...
1
vote
1answer
344 views

How do I programatically add actions to an Action Manager in Delphi 2010

I am trying to dynamically add actionitems, I can add the item and it works when I do this: HostActionItem := ActionManager.ActionBars[0].Items[0].Items[2]; NewItem := HostAction.Items.Add; ...
1
vote
1answer
211 views

Delphi 2009 Actionmanager default Imagelist

I have just started a new project, and I am using the Delphi 2009 Actionmanager component for the first time. The Actionmanager has a list of standard actions, which gives me actions such as File ...
1
vote
1answer
181 views

How do you iterate actions contained in a actionmanager - Delphi 2007

I am using D2007 for a project that has a number of actions in an actionmanager that are then used in actiontoolbars and menus. I have also placed them in categories (eg. File, Tools, Input, etc...). ...