5,696,576 members and growing! (16,386 online)
Email Password   helpLost your password?
Desktop Development » Miscellaneous » General     Intermediate License: The Code Project Open License (CPOL)

ActionLists for Windows.Forms

By Serge Weinstock

Implementation of Delphi's ActionList for Windows.Forms
C#, Windows, .NET 1.0, .NETVisual Studio, VS.NET2002, Dev

Posted: 2 Mar 2002
Updated: 2 Mar 2002
Views: 107,153
Bookmarked: 71 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
55 votes for this Article.
Popularity: 7.56 Rating: 4.34 out of 5
1 vote, 3.0%
1
0 votes, 0.0%
2
1 vote, 3.0%
3
3 votes, 9.1%
4
28 votes, 84.8%
5

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



Occupation: Web Developer
Location: United Kingdom United Kingdom

Other popular Miscellaneous articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 21 of 21 (Total in Forum: 21) (Refresh)FirstPrevNext
GeneralFYI There is a commercial and more complete implementationmemberJeremy Thomas2:43 2 May '08  
QuestionRegarding short cut keysmembermelbjay19:35 23 Mar '06  
GeneralSomething similar on MSDNmemberEric Engler14:59 21 Mar '06  
GeneralShortcut lostmemberdonlelel5:42 28 Feb '06  
GeneralAmazed it had to be written.memberTony J ...4:07 22 Feb '06  
GeneralThanksmemberDidier Vaudène4:34 11 Mar '05  
GeneralExecuting action from codememberAleksei Guzev19:46 17 Jan '05  
GeneralMenuItems, Actionlists and CloneMenu...membertimmc6:48 5 Dec '03  
Generalin VB ?memberbismark11:58 20 Oct '03  
GeneralWhy ?memberchy6111:04 6 Aug '03  
GeneralSetting Action to none causes crashsussPatrick Philippot6:01 3 Aug '03  
GeneralRe: Setting Action to none causes crashsussPatrick Philippot6:31 3 Aug '03  
GeneralShortcut KeymemberDubravko Ostoic22:16 2 Feb '03  
GeneralRe: Shortcut KeymemberSerge Weinstock0:46 4 Feb '03  
GeneralNicely DonememberEd Gadziemski5:40 1 Oct '02  
GeneralA good Controlmemberzjwuweim18:01 31 Aug '02  
GeneralUsing ActionList with VSNetToolbarmemberalexis15:05 25 Apr '02  
GeneralRe: Using ActionList with VSNetToolbarmemberpphilippot2:39 3 Aug '03  
GeneralRe: Using ActionList with VSNetToolbarmemberAlexis Smirnov6:31 4 Aug '03  
GeneralFinally something interestingmemberokigan7:37 5 Mar '02  
GeneralGreat...memberRay Hayes6:50 4 Mar '02  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 2 Mar 2002
Editor: Chris Maunder
Copyright 2002 by Serge Weinstock
Everything else Copyright © CodeProject, 1999-2008
Web17 | Advertise on the Code Project