Click here to Skip to main content
Licence CPOL
First Posted 2 Mar 2002
Views 134,730
Bookmarked 85 times

ActionLists for Windows.Forms

By | 2 Mar 2002 | Article
Implementation of Delphi's ActionList for Windows.Forms

Introduction

The .Net framework is really a nice framework, but as a programmer coming from the MFC world, I really miss some features like the ON_COMMAND/ON_UPDATE_COMMAND_UI mechanism.

This mechanism allows the decoupling of the UI and the code associated to it. It allows:

  • to automatically share the code between menus, toolbars, buttons and other controls.
  • to reduce the amount of code needed for updating the UI.
  • to enable/disable controls according to conditions not related to the UI (for example a connection to a database).

Unfortunately, the ON_COMMAND/ON_UPDATE_COMMAND_UI mechanism is a message base mechanism which strongly relies on a specific message routing architecture. This mechanism can be reproduced in the .Net environment but it is far from being a pratical solution in a RAD environment. A nice alternative is the ActionList component provided by Delphi.

An ActionList is a collection of Actions. Each Action is itself a component associated to a given task. An Action provides the framework for:

  • excuting the task in response to an UI event.
  • enabling/disabling, checking/unchecking the controls related to the task according to some conditions.
Furthermore, this mechanism can be extended in order to:
  • set the text of the controls.
  • set the help text of the controls.
  • show/hide the controls.
  • set the icons associated to the controls.
  • set the shortcut associated to the task.

Adding actions to your project

This a simple example based on the Find Dialog of the demo application. We will add an action wich will be associated to the Find button.

  1. Open your dialog in Design Mode.
  2. Add the components of the CDiese library to the Toolbox.
  3. Drag an ActionList on the dialog
  4. Edit the property Actions of the new ActionList. Add a new Action and set its properties.
  5. Select the action in the component editor and add an EventHandler for the Execute and Update events.
    private void OnUpdateFind(object sender, System.EventArgs e)
    {
    	((CDiese.Actions.Action)sender).Enabled = _text.TextLength > 0;
    }
    
    private void OnFind(object sender, System.EventArgs e)
    {
    	RichTextBoxFinds mode = RichTextBoxFinds.None;
    
    	if (_bCase.Checked)
    	{
    		mode |= RichTextBoxFinds.MatchCase;
    	}
    	....
    	_RTF.Select(sel, _text.Text.Length);
    	_RTF.ScrollToCaret();
    }
    
  6. Associate the action to the Find button

Latest updates

  • 4th March 2002
    • First release
Serge .

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Serge Weinstock

Web Developer

United Kingdom United Kingdom

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
NewsTutorial PinmemberGeorge I. Birbilis12:02 6 Jan '12  
Questionassign action list in runtime Pinmemberaishar22:18 10 Oct '11  
GeneralMy vote of 5 Pinmemberaishar1:49 10 Oct '11  
GeneralFYI There is a commercial and more complete implementation PinmemberJeremy Thomas1:43 2 May '08  
QuestionRegarding short cut keys Pinmembermelbjay18:35 23 Mar '06  
GeneralSomething similar on MSDN PinmemberEric Engler13:59 21 Mar '06  
GeneralShortcut lost Pinmemberdonlelel4:42 28 Feb '06  
GeneralAmazed it had to be written. PinmemberTony J ...3:07 22 Feb '06  
Coming from a trolltech qt c++ background, I was amazed actions were not in windows.Forms. Well done it is useful
GeneralThanks PinmemberDidier Vaudène3:34 11 Mar '05  
GeneralExecuting action from code PinmemberAleksei Guzev18:46 17 Jan '05  
GeneralMenuItems, Actionlists and CloneMenu... Pinmembertimmc5:48 5 Dec '03  
Questionin VB ? Pinmemberbismark10:58 20 Oct '03  
QuestionWhy ? Pinmemberchy6110:04 6 Aug '03  
GeneralSetting Action to none causes crash PinsussPatrick Philippot5:01 3 Aug '03  
GeneralRe: Setting Action to none causes crash PinsussPatrick Philippot5:31 3 Aug '03  
GeneralShortcut Key PinmemberDubravko Ostoic21:16 2 Feb '03  
GeneralRe: Shortcut Key PinmemberSerge Weinstock23:46 3 Feb '03  
GeneralNicely Done PinmemberEd Gadziemski4:40 1 Oct '02  
GeneralA good Control Pinmemberzjwuweim17:01 31 Aug '02  
GeneralUsing ActionList with VSNetToolbar Pinmemberalexis14:05 25 Apr '02  
GeneralRe: Using ActionList with VSNetToolbar Pinmemberpphilippot1:39 3 Aug '03  
GeneralRe: Using ActionList with VSNetToolbar PinmemberAlexis Smirnov5:31 4 Aug '03  
GeneralFinally something interesting Pinmemberokigan6:37 5 Mar '02  
GeneralGreat... PinmemberRay Hayes5:50 4 Mar '02  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 3 Mar 2002
Article Copyright 2002 by Serge Weinstock
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid