A menu is considered, or qualifies as, popup if, or because, it can appear anywhere on the form as the programmer wishes. Such a menu is also referred to as context-sensitive or contextual because its appearance and behavior depend on where it displays on the form or on a particular control. The person who creates the application decides if or where the contextual menu would appear. Because this characteristic is up to the programmer, the same application can display different types of popup menus depending on where the user right-clicks. Here are examples:
The first difference between a main menu and a popup menu is that a popup menu appears as one category or one list of items and not like a group of categories of menus like a main menu. Secondly, while a main menu by default is positioned on the top section of a form, a popup menu doesn't have a specific location on the form.
To support the creation and management of contextual menus, the .NET Framework provides the ContextMenuStrip class. This class is derived from ToolStripDropDownMenu, which itself is based on the ToolStripDropDown class. The ToolStripDropDown class is derived from ToolStrip. To visually create a contextual menu, in the Menus & Toolbars section of the Toolbox, click the ContextMenuStrip button and click the form. Once you have a ContextMenuStrip object, you can create its menu items. To do this, as mentioned for the MenuStrip, you can click the first Type Here line, type a string, press Enter, and continue creating the other menu items in the same way. Unlike a main menu, a popup menu provides a single list of items. If you want different popup menus for your form, you have two options. You can create various popup menus or programmatically change your single popup menu in response to something or some action on your form. To programmatically create a contextual menu, start by declaring a handle to ContextMenuStrip. Here is an example: using System; using System.Windows.Forms; public class Exercise : Form { public Exercise() { InitializeComponent(); } void InitializeComponent() { System.Windows.Forms.ContextMenuStrip context = new System.Windows.Forms.ContextMenuStrip(); } static int Main() { System.Windows.Forms.Application.Run(new Exercise()); return 0; } } To assist you with each item of a contextual menu, ToolStrip, the ancestor to the ContextMenuStrip class, is equipped with a property named Items. This property is of type ToolStripItemCollection, which is a collection-based class. The ToolStripItemCollection class implements the IList, the ICollection, and the IEnumerable interfaces. To create one or more menu items, you can use the various techniques we reviewed for the main menu. Here are examples: void InitializeComponent() { System.Windows.Forms.ContextMenuStrip context = new System.Windows.Forms.ContextMenuStrip(); ToolStripMenuItem mnuCut = new ToolStripMenuItem("Cut"); ToolStripMenuItem[] mnuEdit = { new ToolStripMenuItem("Copy"), new ToolStripMenuItem("Paste") }; } After creating a menu item, to add it to the contextual menu, you can call the ToolStripItemCollection.Add() method. To add an array of items, you can call the create ToolStripItemCollection.AddRange() method. Here are examples: void InitializeComponent() { System.Windows.Forms.ContextMenuStrip context = new System.Windows.Forms.ContextMenuStrip(); ToolStripMenuItem mnuCut = new ToolStripMenuItem("Cut"); ToolStripMenuItem[] mnuEdit = { new ToolStripMenuItem("Copy"), new ToolStripMenuItem("Paste") }; context.Items.Add(mnuCut); context.Items.AddRange(mnuEdit); }
By default, a newly created contextual menu is attached neither to the form nor to any control on it. In order to display a context menu, you must assign its name to the control. To support this, Control, the ancestor to all visual controls of the .NET Framework, is equipped, and provides to its children, a property named ContextMenuStrip, which is of type ContextMenuStrip. To visually assign a contextual menu to a control during design, click the control. In the Properties window, click the ContextMenuStrip field, then click the arrow of its combo box, and select the menu. If you had created more than one contextual menu, the combo box would show all of them and you can choose the one you want to use as default. To programmatically specify the contextual menu of a control, assign a ContextMenuStrip object to its ContextMenuStrip property. Here is an example: void InitializeComponent() { System.Windows.Forms.ContextMenuStrip context = new System.Windows.Forms.ContextMenuStrip(); ToolStripMenuItem mnuCut = new ToolStripMenuItem("Cut"); ToolStripMenuItem[] mnuEdit = { new ToolStripMenuItem("Copy"), new ToolStripMenuItem("Paste") }; context.Items.Add(mnuCut); context.Items.AddRange(mnuEdit); ContextMenuStrip = context; } After assigning a ContextMenuStrip object to a control, when you right-click (actually when the user right-clicks) the control, the contextual menu would display. The above code would produce:
In your application, you can create as many contextual menus as you want. If you have different controls, each can have its own contextual menu or many can share a contextual menu. Also, you can use different contextual menus for a control and decide what menu to display when/why. There is nothing particularly specific with writing code for a popup menu item. You approach it exactly as if you were dealing with a menu item of a main menu. You can write code for an item of a popup menu independent of any other item of a main menu. If you want an item of a popup menu to respond to the same request as an item of a main menu, you can write code for one of the menu items (either the item on the main menu or the item on the popup menu) and simply call its Click event in the event of the other menu item.
|
|||||||||||||||||||||||||||||||||