Home

Windows Controls: The Main Menu

 

Introduction

When it comes to a restaurant, a menu is a list of food items that the restaurant offers to its customers. For a computer application, a menu is a list of actions that can be performed on that application. To be aware of these actions, the list must be presented to the user upon request. On a typical DOS application, a menu is presented with numerical or character options that the user can select from. An example would be:

Here are the various options:
1. Register a new student
2. Review a student's information
3. Enter student's grades
4. Close the application

The user would then enter the number (or character) that corresponds to the desired option and continue using the program. For a graphical application, a menu is presented as a list of words and, using a mouse or a keyboard, the user can select the desired item from the menu.

To enhance the functionality of a graphical application, also to take advantage of the mouse and the keyboard, there are various types of menus. A menu is considered a main menu when it carries most of the actions the user can perform on a particular application. Such a menu is positioned in the top section of the form in which it is used.

A main menu is divided in categories of items and each category is represented by a word. In WordPad, the categories of menus are File, Edit, View, Insert, Format, and Help:

To use a menu, the user first clicks one of the words that displays on top. When clicked, the menu expands and displays a list of items that belong to that category. Here is an example:

There is no strict rule on how a menu is organized. There are only suggestions. For example, actions that are related to file processing, such as creating a new file, opening an existing file, saving a file, printing the open file, or closing the file usually stay under a category called File. In the same way, actions related to viewing documents can be listed under a View menu category.

Main Menu Creation

To support actions that are used to graphically enhance the functionality of an application, the .NET Framework provides the ToolStrip class. To support menus for an application, the .NET Framework provides the MenuStrip class (in Microsoft Visual Studio 2002 and 2003, the main menu was implemented through the MainMenu class, which is still available but lacks some features).

To graphically create a main menu, in the Menus & Toolbars section of the Toolbox, you can click the MenuStrip button and click the form that will use the menu. After clicking the form, an empty menu is initiated:

Like every control, the main menu must have a name. After adding the menu strip to a form, you can accept the suggested name or, in the Properties window, click (Name) and type the desired name. You can then use the menu placeholder to add the necessary menu item(s)..

To programmatically create a main menu, declare a handle to MenuStrip class and initialize it with its default constructor. Because the main menu is primarily a control, you must add it to the list of controls of the form. Here is an example:

#include <windows.h>

#using <System.dll>
#using <System.Drawing.dll>
#using <System.Windows.Forms.dll>

using namespace System;
using namespace System::Drawing;
using namespace System::Windows::Forms;

public ref class CExercise : public Form
{
private:
	MenuStrip ^ mnuMain;

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuMain = gcnew MenuStrip;

	Controls->Add(mnuMain);
    }
};

int APIENTRY WinMain(HINSTANCE hInstance,
		     HINSTANCE hPrevInstance,
		     LPSTR lpCmdLine,
		     int nCmdShow)
{
    Application::Run(gcnew CExercise());

    return 0;
}

Menu Categories

In our introduction, we saw that a main menu was made of categories represented in the top section. After adding a MenuStrip, you can start creating the desired menu categories. To graphically create a menu category:

  • In the menu strip, you can click the Type Here line and type the desired string
  • In the menu strip, you can click Type Here. Then, in the Properties window, click the Text field and type the desired string

To create the next menu category, you can click Type Here on the right side of the previous menu category. In the same way, you can continue creating the desired menu categories.

Here is an example:

Besides clicking Type Here and typing a string, an alternative is to get assisted by a dialog box. To open it:

  • Under the form, you can click the menu strip object and, in the Properties window, you can click the ellipsis button of the Items field
  • Under the form, you can right-click the menu strip and click Edit Items...

A dialog box, titled Items Collection Editor, would come up:

To create a menu category, in the Select Item And Add To List Below combo box, select MenuItem and click the Add button. In the right list, configure the menu item. At a minimum, you should specify its caption in the Text field. Like every control, each menu item has a name. To make sure you can easily recognize it in your code, when creating a menu item, you should give it a name unless you are contempt with the suggested one. After creating the menu categories, you can click OK and keep the dialog box opened for more options.

To support menu items, the .NET Framework provides the ToolStripMenuItem class. Using it, to create a menu category, declare a handle to this class and initialize it using one of its constructors. The default constructor is used to create a menu item without specifying any of its options. Here is an example:

public ref class CExercise : public Form
{
private:
    MenuStrip ^ mnuMain;
    ToolStripMenuItem ^ mnuFile;

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuMain = gcnew MenuStrip;
	mnuFile = gcnew ToolStripMenuItem;

	Controls->Add(mnuMain);
    }
};

To specify the caption that will be displayed on a menu category, you can use the following constructor of the ToolStripMenuItem class:

public:
    ToolStripMenuItem(String^ text);

Here is an example:

public ref class CExercise : public Form
{
private:
    MenuStrip ^ mnuMain;
    ToolStripMenuItem ^ mnuFile;

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuMain = gcnew MenuStrip;
	mnuFile = gcnew ToolStripMenuItem(L"File");

	Controls->Add(mnuMain);
    }
};

If you had instantiated the class using its default constructor, to specify its caption, the ToolStripMenuItem class is equipped with the Text property. Therefore, assign a string to this property. Here is an example:

public ref class CExercise : public Form
{
private:
    MenuStrip ^ mnuMain;
    ToolStripMenuItem ^ mnuFile;
    ToolStripMenuItem ^ mnuEdit;

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuMain = gcnew MenuStrip;
	mnuFile = gcnew ToolStripMenuItem(L"File");
	mnuEdit	= gcnew ToolStripMenuItem;
	mnuEdit->Text = L"Edit";

	Controls->Add(mnuMain);
    }
};

In the same way, you can create as many menu categories as you judge necessary for your application.

Introduction to Menu Items

In our introduction, we saw that if you click a menu category, a list comes up. Here is an example:

The objects under a menu category are referred to as menu items. To graphically create a menu item, first access the menu strip, which you can do by clicking it under the form. On the form, click a menu category. Once you do, a placeholder would be displayed under it:

To create a menu item:

  • Under a category, click Type Here and type the desired caption. 
  • Click the menu category. Then, in the Properties window, click Text and type the desired string.

In the same way, to create the next menu item, under the same category, click the next Type Here and type the desired caption or change the Text value in the Properties window.

An alternative is to use a dialog box. To access it, in the menu designer:

  • Right-click the menu category and click Edit Drop Down Items...
  • Click the menu category. Then, in the Properties window, click the ellipsis button of the DropDownItems field

The Items Collection Editor dialog box would come up:

Items Collection Editor

To create a menu item, in the Select Item And Add To List Below combo box, select MenuItem and click Add. On the right side, configure the menu item as you see fit. At a minimum, you should specify its caption in the Text field.

Both the menu category and the menu item are created using the ToolStripMenuItem class. Here are examples:

public ref class CExercise : public Form
{
private:
    MenuStrip ^ mnuMain;
    ToolStripMenuItem ^ mnuFile;
    ToolStripMenuItem ^ mnuNew;
    ToolStripMenuItem ^ mnuExit;
    ToolStripMenuItem ^ mnuEdit;
    ToolStripMenuItem ^ mnuCopy;

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuMain = gcnew MenuStrip;
	mnuFile = gcnew ToolStripMenuItem(L"File");
	mnuNew	= gcnew ToolStripMenuItem(L"New");
	mnuExit = gcnew ToolStripMenuItem(L"Exit");
	mnuEdit = gcnew ToolStripMenuItem(L"Edit");
	mnuCopy = gcnew ToolStripMenuItem(L"Copy");

	Controls->Add(mnuMain);
    }
};

Associating Menu Items to Menu Categories

If you visually create your main menu, the form designer takes care of most details behind the scenes. For example, each menu item is automatically added to its parent menu category. If you programmatically create your main menu, you must associate each menu item to its parent menu category.

To support menu categories, ToolStripMenuItem, the class used to create menu categories, is derived from a class named ToolStripDropDownItem. The ToolStripDropDownItem class is abstract, which means you cannot instantiate it. Instead, it provides functionality to other classes derived from it. The ToolStripDropDownItem class is based on the ToolStripItem class.

To support menu items, the ToolStripDropDownItem class is equipped with a property named DropDownItems. This property is of type ToolStripItemCollection, which a collection-based class. The ToolStripItemCollection class implements the IList and the ICollection interfaces.

To specify that a menu item will be part of a menu category, call the Add() method of the ToolStripItemCollection class. This method is overloaded with various versions. One of the versions uses the following syntax:

public:
    int Add(ToolStripItem^ value);

This version allows you to pass a ToolStripItem-type of item class, such as a ToolStripMenuItem object. Here is an example:

public ref class CExercise : public Form
{
private:
    ToolStripMenuItem ^ mnuEdit;
    ToolStripMenuItem ^ mnuCopy;

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuEdit	= gcnew ToolStripMenuItem(L"Edit");
	mnuCopy	= gcnew ToolStripMenuItem(L"Copy");
	mnuEdit->DropDownItems->Add(mnuCopy);

	Controls->Add(mnuMain);
    }
};

The ToolStripItemCollection class also allows you to create a menu item without going through ToolStripItem-type of object. To support this, its provides the following version of its Add() method:

public:
    ToolStripItem ^ Add(String^ text);

This method takes as argument the text that the menu item would display and it returns the ToolStripItem item that was created. Here is an example:

public ref class CExercise : public Form
{
private:
    ToolStripMenuItem ^ mnuEdit;
    ToolStripMenuItem ^ mnuCopy;
    ToolStripMenuItem ^ mnuPaste;

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuEdit	= gcnew ToolStripMenuItem(L"Edit");
	mnuCopy	= gcnew ToolStripMenuItem(L"Copy");
	mnuEdit->DropDownItems->Add(mnuCopy);
	mnuPaste = dynamic_cast<ToolStripMenuItem ^>(
			mnuEdit->DropDownItems->Add(L"Paste"));

	Controls->Add(mnuMain);
    }
};

Instead of adding one menu item at a time, you can create an array of menu items and then add it to a category in one row. To support this, the ToolStripItemCollection class implements the AddRange() method. This method is overloaded with two versions. One of the versions uses the following syntax:

public:
    void AddRange(array<ToolStripItem^>^ toolStripItems);

When calling this method, you must pass it an array of ToolStripItem-type of objects. Here are two examples:

public ref class CExercise : public Form
{
private:
    MenuStrip ^ mnuMain;
    ToolStripMenuItem ^ mnuFile;
    ToolStripMenuItem ^ mnuNew;
    ToolStripMenuItem ^ mnuOpen;
    ToolStripMenuItem ^ mnuExit;
    ToolStripMenuItem ^ mnuEdit;
    ToolStripMenuItem ^ mnuCopy;
    ToolStripMenuItem ^ mnuPaste;
    ToolStripMenuItem ^ mnuHelp;

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuMain = gcnew MenuStrip;

	mnuFile = gcnew ToolStripMenuItem(L"File");
	mnuNew	= gcnew ToolStripMenuItem(L"New");
        mnuOpen = gcnew ToolStripMenuItem(L"Open");
	mnuExit	= gcnew ToolStripMenuItem(L"Exit");
	array<ToolStripMenuItem ^> ^ mnuFileItems = { mnuNew, mnuOpen, mnuExit};
	mnuFile->DropDownItems->AddRange(mnuFileItems);

	mnuEdit	= gcnew ToolStripMenuItem(L"Edit");
	mnuCopy	= gcnew ToolStripMenuItem(L"Copy");
	mnuEdit->DropDownItems->Add(mnuCopy);
	mnuPaste = dynamic_cast<ToolStripMenuItem ^>(
		mnuEdit->DropDownItems->Add(L"Paste"));

	mnuHelp = gcnew ToolStripMenuItem(L"Help");
	array<ToolStripMenuItem ^> ^ mnuHelpItems =
	{ 
	    gcnew ToolStripMenuItem(L"Search"),
	    gcnew ToolStripMenuItem(L"Contents"),
	    gcnew ToolStripMenuItem(L"Index"),
	    gcnew ToolStripMenuItem(L"Support Web Site"),
	    gcnew ToolStripMenuItem(L"About this application")
	};
	mnuHelp->DropDownItems->AddRange(mnuHelpItems);

	Controls->Add(mnuMain);
    }
};

Associating Menu Categories to the Main Menu 

If you visually create your main menu, each menu category is automatically assigned to the menu strip. If you programmatically create your main menu, you must take care of this in order to show the whole menu.

After creating the menu categories, you can add them to the main menu. To support this, the ToolStrip class is equipped with a property named Items and it makes this property available to the MenuStrip class. The Items property is of type ToolStripItemCollection. This class implements the IList, the ICollection, and the IEnumerable interfaces. Therefore, to add a menu category to a MenuStrip object, you can call the Add() method of the ToolStripItemCollection class. This method is overloaded with various versions and one of them uses the following version:

public:
    int Add(ToolStripItem^ value);

You can call this version and pass it a ToolStripItem-type of object, such as a ToolStripMenuItem value. Here is an example:

public ref class CExercise : public Form
{
private:
    MenuStrip ^ mnuMain;
    ToolStripMenuItem ^ mnuFile;
    
    . . .

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuMain = gcnew MenuStrip;

	mnuFile = gcnew ToolStripMenuItem(L"File");
	
        . . .

	mnuMain->Items->Add(mnuFile);
	Controls->Add(mnuMain);
    }
};

In the same way, you can add the other items. Alternatively, you can create an array of menu categories and add them in a row. To support this, the ToolStripItemCollection is equipped with the AddRange() medhod that is overloaded with two versions. One of the versions uses the following syntax:

public:
    void AddRange(array<ToolStripItem^>^ toolStripItems);

When calling this method, pass it an array of ToolStripItem types of values. Here is an example:

#include <windows.h>

#using <System.dll>
#using <System.Drawing.dll>
#using <System.Windows.Forms.dll>

using namespace System;
using namespace System::Drawing;
using namespace System::Windows::Forms;

public ref class CExercise : public Form
{
private:
    MenuStrip ^ mnuMain;
    ToolStripMenuItem ^ mnuFile;
    ToolStripMenuItem ^ mnuNew;
    ToolStripMenuItem ^ mnuOpen;
    ToolStripMenuItem ^ mnuExit;
    ToolStripMenuItem ^ mnuEdit;
    ToolStripMenuItem ^ mnuCopy;
    ToolStripMenuItem ^ mnuPaste;
    ToolStripMenuItem ^ mnuView;
    ToolStripMenuItem ^ mnuHelp;

public:
    CExercise()
    {
	InitializeComponent();
    }

    void InitializeComponent()
    {
	mnuMain = gcnew MenuStrip;

	mnuFile = gcnew ToolStripMenuItem(L"File");
	mnuNew	= gcnew ToolStripMenuItem(L"New");
        mnuOpen = gcnew ToolStripMenuItem(L"Open");
	mnuExit	= gcnew ToolStripMenuItem(L"Exit");
	array<ToolStripMenuItem ^> ^ mnuFileItems = { mnuNew, mnuOpen, mnuExit};
	mnuFile->DropDownItems->AddRange(mnuFileItems);

	mnuEdit	= gcnew ToolStripMenuItem(L"Edit");
	mnuCopy	= gcnew ToolStripMenuItem(L"Copy");
	mnuEdit->DropDownItems->Add(mnuCopy);
	mnuPaste = dynamic_cast<ToolStripMenuItem ^>(
			mnuEdit->DropDownItems->Add(L"Paste"));

	mnuView = gcnew ToolStripMenuItem(L"View");
	array<ToolStripMenuItem ^> ^ mnuViewItems =
	{ 
		gcnew ToolStripMenuItem(L"Standard Toolbar"),
		gcnew ToolStripMenuItem(L"Formatting Toolbar"),
		gcnew ToolStripMenuItem(L"Status Bar")
	};
	mnuView->DropDownItems->AddRange(mnuViewItems);

	mnuHelp = gcnew ToolStripMenuItem(L"Help");
	array<ToolStripMenuItem ^> ^ mnuHelpItems =
	{ 
		gcnew ToolStripMenuItem(L"Search"),
		gcnew ToolStripMenuItem(L"Contents"),
		gcnew ToolStripMenuItem(L"Index"),
		gcnew ToolStripMenuItem(L"Support Web Site"),
		gcnew ToolStripMenuItem(L"About this application")
	};
	mnuHelp->DropDownItems->AddRange(mnuHelpItems);
	
	array<ToolStripMenuItem ^> ^ mnuAccessories = { mnuView, mnuHelp };

	mnuMain->Items->Add(mnuFile);
	mnuMain->Items->AddRange(mnuAccessories);

	Controls->Add(mnuMain);
    }
};

int APIENTRY WinMain(HINSTANCE hInstance,
		     HINSTANCE hPrevInstance,
		     LPSTR lpCmdLine,
		     int nCmdShow)
{
    Application::Run(gcnew CExercise());

    return 0;
}

This would produce:

Practical LearningPractical Learning: Creating a Menu

  1. Start a new Windows Forms Application named PictureViewer2
  2. Change the form's Text to Picture Viewer
  3. In the Menus & Toolbars section of the Toolbox, click the MenuStrip button and click the form
  4. On the form, click Type Here, type File and press Enter
  5. On the form, click File.
    In the Properties window, click (Name) and type mnuFile
  6. On the form, click File and click the Type Here box under it
  7. Type Exit and press Enter
  8. On the form, click File and click Exit.
    In the Properties window, click (Name) and type mnuFileExit
  9. Save all

Coding a Menu Item

If you create a menu as we have just done, to write code for one of the menu items, you can double-click the menu item. This would open the Click event of the menu item in the Code Editor and you can start writing the desired code for that item.

Practical LearningPractical Learning: Writing Code For a Main Menu

  1. On the form, click File and double-click Exit
  2. Implement the event as follows:
     
    System::Void mnuFileExit_Click(System::Object^  sender,
    				 System::EventArgs^  e)
    {
        Close();
    }
  3. Test the form
     
    Using a menu item at execution time
  4. To close it, click File -> Exit
 

Home Copyright © 2007-2013, FunctionX Next