MenuItem.Select Event

Definition

Occurs when the user places the pointer over a menu item.

C#
public event EventHandler Select;

Event Type

Examples

The following code example demonstrates how to use the Select event of the MenuItem class to assign help text to a StatusBarPanel of a StatusBar control. This example requires that MenuItem objects named menuOpen, menuSave, and menuExit are added to a MainMenu control on a form. The example also requires that a StatusBar control, named statusBar1 has been added to the form. The StatusBar control should contain a StatusBarPanel.

C#
private void MenuSelected(object sender, System.EventArgs e)
{
   if (sender == menuOpen)
      statusBar1.Panels[0].Text = "Opens a file to edit";
   else if(sender == menuSave)
      statusBar1.Panels[0].Text = "Saves the current file";
   else if(sender == menuExit)
      statusBar1.Panels[0].Text = "Exits the application";
   else
      statusBar1.Panels[0].Text = "Ready";
}

Remarks

This event is typically raised when the user places the mouse pointer over the menu item. The event can also be raised when the user highlights a menu item using the keyboard by scrolling to the menu item with the arrow keys. You can use this event to display a detailed help string pertaining to this menu item in an application's status bar. For more information about handling events, see Handling and Raising Events.

Note

If the MenuItems property for the MenuItem contains any items, this event is not raised. This event is not raised for parent menu items.

Applies to

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 10

See also