Click here to Skip to main content
15,881,803 members
Articles / Programming Languages / XML

Extended Interface for Status Message

Rate me:
Please Sign up or sign in to vote.
4.77/5 (26 votes)
8 Apr 20023 min read 192.5K   298   91   32
Adding an extended property to Menus in order to provide automatic statusbar messages as the user chooses different menu options

MFC Updating Status Bar Automatically

Problem

Some of the features of MFC that we were accustomed to having are missing from the .NET architecture. One of them is the automatic use of the status bar. As the user moves across the menu, a description will appear in the status bar.

The .NET architecture allows you to repeat this functionality by overriding the MenuItem class. Unfortunately, it's a manual process and requires a large case statement.

Hopefully, we can overcome this shortcoming with a quick and simple extended property. Plus, it gives you a sample to create your own extended interfaces.

Background

The IExtenderProvider is a tremendously powerful tool when used in conjunction with the interface. The syntax is quite simple.

C#
[ProvideProperty( "StatusMessage", typeof(Component)) ] 
public class StatusMessage : Component, IExtenderProvider 
{
   public void SetStatusMessage( Component pComponent, string strMessage )
      ... 

   public string GetStatusMessage( Component pComponent )
  ... 
}

The ProvideProperty tag tells the interface that you are adding a property called "StatusMessage" to all components in your current development. Similar to a C# property, you will create a Set and Get pair of messages.

The source code for the interface is quite simple, but I'll refrain from discussing the actual coding process to keep this article at a basic level.

1. Add the StatusMessage Control to .NET

Adding the Component to the Toolbox

After copying the Extended Interface DLL (ExtendedInterface.DLL) to your desired destination, you will need to add it permanently to your toolbox.

  1. With the toolbox open, right click the list to select 'Customize Toolbox'.
  2. Select the tab .NET Framework Components
  3. Click Browse...
  4. Click on ExtendedInterface.DLL
  5. Click OK.

The Toolbox should have two new components: StatusMessage and ToolBarFunction.

Adding StatusMessage support is as easy as dragging the StatusMessage component onto your form. The component will appear below your form.

The other component ToolBarFunction will be discussed in a later article.

2. Add the Component to Your Current Project

Updating the StatusBar

You will also need to drag over a StatusBar from your Toolbox onto your form. Make sure to add at least one StatusBarPanel to your StatusBar.

  1. Display the properties of your StatusBar.
  2. Click on the 'Panels' collection and add at least one panel. Call it anything you wish, I used StatusMessage.
  3. Make sure AutoSize is set to Spring.
  4. Click OK to close the collection.

3. Change the StatusMessage Property

Modifying the StatusBar properties

You will need to modify your StatusMessage component to point to the StatusBarPanel that you have created.

  1. Display the properties of your StatusMessage.
  2. Click on the StatusBar property and use the combo dropdown to find the desired StatusBarPanel that you are wanting to use.

4. Add Messages to Your Menus

Updating the text on the menus

Now click on each of your items in your menu. Under the Misc category, you will now have a new property called StatusMessage.

Type in the text that you would like to appear in the status bar for each MenuItem.

5. Test Your Application

And voila!! Your .NET application now has support for your status bar!

Sample Image

License

This article has no explicit license attached to it, but may contain usage terms in the article text or the download files themselves. If in doubt, please contact the author via the discussion board below.

A list of licenses authors might use can be found here.


Written By
Founder Zombies With Coffee, LLC
United States United States
Phillip has been a programmer long enough to remember cutting paper strip code out of Dr. Dobbs and running them thru a mechanical decoder to avoid typing in the samples.

Comments and Discussions

 
GeneralRe: Localization Pin
Member 66515811-Nov-02 23:59
Member 66515811-Nov-02 23:59 
Questionwhat about the dll Pin
Rüpel11-Apr-02 20:51
Rüpel11-Apr-02 20:51 
AnswerRe: what about the dll Pin
Rick York11-Apr-02 20:55
mveRick York11-Apr-02 20:55 
GeneralRe: what about the dll Pin
Rüpel11-Apr-02 21:38
Rüpel11-Apr-02 21:38 
AnswerRe: what about the dll Pin
Zombies with Coffee, LLC12-Apr-02 3:49
professionalZombies with Coffee, LLC12-Apr-02 3:49 
AnswerAlso, what about the MDI form? Pin
dolphinegd30-Oct-03 22:30
dolphinegd30-Oct-03 22:30 
GeneralRe: Also, what about the MDI form? Pin
LimeyRedneck7-Feb-05 8:01
professionalLimeyRedneck7-Feb-05 8:01 

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

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