actionlist

Why does adding Action cause Fatal Error in Delphi

穿精又带淫゛_ 提交于 2019-12-14 03:00:07
问题 I'm using Delphi 2009. My program has been compiling and running fine. I use Action lists and have them built into my program - although I haven't changed them in a while. So today I go to simply add a new action to my ActionList in the normal manner that it is done. Without doing anything else, I now build and run my program and I get the following error: [DCC Fatal Error] Userface.pas(1): F2092 Program or unit 'Userface' recursively uses itself. I have done nothing to change any of the uses

Is there .NET equivalent to Delphi's ActionList?

 ̄綄美尐妖づ 提交于 2019-11-30 14:37:11
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

Is there .NET equivalent to Delphi's ActionList?

别来无恙 提交于 2019-11-29 20:10:38
问题 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,