MainMenu.CloneMenu Method

Definition

Creates a new MainMenu that is a duplicate of the current MainMenu.

public virtual System.Windows.Forms.MainMenu CloneMenu ();

Returns

A MainMenu that represents the cloned menu.

Examples

The following code example uses the GetForm method to determine if a MainMenu is currently parented to the form. If the call in the example code to GetForm does not return null, the code then clones the menu structure of the MainMenu using the CloneMenu method. The code then sets the RightToLeft property to true on the new copy of the MainMenu to create a MainMenu that can be used for languages that support right to left text. This example requires that you have a MainMenu created that is named mainMenu1.

public void CloneMyMenu()
{
   // Determine if mainMenu1 is currently hosted on the form.
   if(mainMenu1.GetForm() != null)
   {
      // Create a copy of the MainMenu that is hosted on the form.
      MainMenu mainMenu2 = mainMenu1.CloneMenu();
      // Set the RightToLeft property for mainMenu2.
      mainMenu2.RightToLeft = RightToLeft.Yes;
   }
}

Remarks

You can use this method to create a copy of the menu structure stored in a MainMenu. You can use this method to reuse the menu structure stored in a MainMenu as the foundation for a new MainMenu. For example, if you want to create a menu structure that has the same menu items as an existing MainMenu but will also have additional MenuItem objects added to it, you can use the CloneMenu method to create a copy of the original MainMenu and then add the new MenuItem objects to the cloned MainMenu.

Applies to

Produto Versões
.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