Menu::MenuItemCollection::Add Method (Int32, MenuItem^)
Adds a previously created MenuItem at the specified index within the menu item collection.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- index
-
Type:
System::Int32
The position to add the new item.
- item
-
Type:
System.Windows.Forms::MenuItem^
The MenuItem to add.
| Exception | Condition |
|---|---|
| Exception | The MenuItem being added is already in use. |
| ArgumentException | The index supplied in the index parameter is larger than the size of the collection. |
A MenuItem can only be contained in one menu at a time, and cannot be added more than once to the same menu. To reuse a MenuItem in more than one menu, use the CloneMenu method of the MenuItem class. To remove a MenuItem that you have previously added, use the Remove method.
This version of the Add method allows you to add previously created MenuItem objects to a specific index location within the collection. Any MenuItem currently located at that index, and all MenuItem objects after that index, are moved to the next lowest index in the collection.
The following code example creates an instance of the derived class, MainMenu, and adds a MenuItem object to its collection of MenuItem objects at a specific location in the menu item collection. This example requires that the method defined in this example is located within the class for a form and called by a method in that form class.
private: void InitializeMyMainMenu() { // Create the MainMenu and the MenuItem to add. MainMenu^ mainMenu1 = gcnew MainMenu; MenuItem^ menuItem1 = gcnew MenuItem( "&File" ); /* Use the MenuItems property to call the Add method to add the MenuItem to mainMenu1 at specific index. */ mainMenu1->MenuItems->Add( 0, menuItem1 ); // Assign mainMenu1 to the form. this->Menu = mainMenu1; }
Available since 1.1