Click here to Skip to main content
15,878,852 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

 
GeneralPlease show me a program that runs on the screen. Pin
supermon212-Jul-10 18:18
supermon212-Jul-10 18:18 
Questionprob with StatusMessage property Pin
c-n-sourceteam8-Apr-07 0:02
c-n-sourceteam8-Apr-07 0:02 
AnswerRe: prob with StatusMessage property Pin
c-n-sourceteam8-Apr-07 1:59
c-n-sourceteam8-Apr-07 1:59 
Generalmore toolbar problem Pin
amoba22-Sep-05 3:37
amoba22-Sep-05 3:37 
GeneralNice way of doing this...BUT... Pin
Tomas Brennan8-Oct-04 4:39
Tomas Brennan8-Oct-04 4:39 
GeneralRe: Nice way of doing this...BUT... Pin
Bojan Rajkovic6-Jul-05 7:36
Bojan Rajkovic6-Jul-05 7:36 
GeneralRe: Nice way of doing this...BUT... Pin
brucemo21-Sep-05 21:27
brucemo21-Sep-05 21:27 
GeneralStill can't get localization to work Pin
Ian McCarthy6-Oct-04 1:27
Ian McCarthy6-Oct-04 1:27 
GeneralClick_Event()... Pin
Per Rollvang7-Mar-04 16:22
Per Rollvang7-Mar-04 16:22 
GeneralRe: Click_Event()... Pin
DCEdwards19665-May-04 6:39
DCEdwards19665-May-04 6:39 
In the SetStatusMessage function of the StatusMessage class, add the following:


>>> Existing line of code
    pMenuItem.Select += new EventHandler(Handle_MenuSelect);

>>> New line of code
    pMenuItem.Click += new EventHandler(Handle_MenuClick);

Then, add the code for Handle_MenuClick:

private void Handle_MenuClick(Object pControl, EventArgs e)<br />
{<br />
    if (null == StatusBar)<br />
    {<br />
        return;<br />
    }<br />
<br />
    StatusBar.Text = "";<br />
}<br />

GeneralRe: Click_Event()... Pin
wilsonstl8-Sep-04 10:51
wilsonstl8-Sep-04 10:51 
GeneralRe: Click_Event()... Pin
Klepton2-Dec-04 19:22
Klepton2-Dec-04 19:22 
GeneralDocking Menu Pin
mantujap5-Feb-04 4:15
mantujap5-Feb-04 4:15 
GeneralRe: Docking Menu Pin
spvarapu30-Apr-05 20:46
spvarapu30-Apr-05 20:46 
GeneralGreat Article! Pin
Member 14901625-Sep-03 20:01
Member 14901625-Sep-03 20:01 
GeneralRe: Great Article! Pin
LimeyRedneck7-Feb-05 8:05
professionalLimeyRedneck7-Feb-05 8:05 
GeneralRe: Great Article! Pin
spvarapu30-Apr-05 20:49
spvarapu30-Apr-05 20:49 
Generaladding Localizable status messages Pin
bobbisson6-Apr-03 22:26
bobbisson6-Apr-03 22:26 
GeneralRe: adding Localizable status messages Pin
bobbisson22-Apr-03 0:21
bobbisson22-Apr-03 0:21 
GeneralGood Article Pin
Srinivasa Raghavan28-Mar-03 0:32
Srinivasa Raghavan28-Mar-03 0:32 
GeneralTip: Storing and Restoring the Status Text Pin
Amber Star16-Feb-03 1:22
Amber Star16-Feb-03 1:22 
GeneralRe: Tip: Storing and Restoring the Status Text Pin
Le_MuLoT28-Nov-05 8:21
Le_MuLoT28-Nov-05 8:21 
GeneralRe: Tip: Storing and Restoring the Status Text Pin
jefrubio4-May-06 1:26
jefrubio4-May-06 1:26 
GeneralLocalization Pin
Thomas S. Andersen7-Nov-02 22:12
sussThomas S. Andersen7-Nov-02 22:12 
GeneralRe: Localization Pin
Zombies with Coffee, LLC11-Nov-02 5:23
professionalZombies with Coffee, LLC11-Nov-02 5:23 

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.