MenuItem.MergeType Property
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value indicating the behavior of this menu item when its menu is merged with another.
public:
property System::Windows::Forms::MenuMerge MergeType { System::Windows::Forms::MenuMerge get(); void set(System::Windows::Forms::MenuMerge value); };
public System.Windows.Forms.MenuMerge MergeType { get; set; }
member this.MergeType : System.Windows.Forms.MenuMerge with get, set
Public Property MergeType As MenuMerge
A MenuMerge value that represents the menu item's merge type.
The assigned value is not one of the MenuMerge values.
The following code example creates a MenuItem with the MergeType and MergeOrder specified so that the menu item is added to the merged menu at first position.
public:
void InitMyFileMenu()
{
// Set the MergeType to Add so that the menu item is added to the merged menu.
menuItem1->MergeType = MenuMerge::Add;
// Set the MergeOrder to 1 so that this menu item is placed lower in the merged menu order.
menuItem1->MergeOrder = 1;
}
public void InitMyFileMenu()
{
// Set the MergeType to Add so that the menu item is added to the merged menu.
menuItem1.MergeType = MenuMerge.Add;
// Set the MergeOrder to 1 so that this menu item is placed lower in the merged menu order.
menuItem1.MergeOrder = 1;
}
Public Sub InitMyFileMenu()
' Set the MergeType to Add so that the menu item is added to the merged menu.
menuItem1.MergeType = MenuMerge.Add
' Set the MergeOrder to 1 so that this menu item is placed lower in the merged menu order.
menuItem1.MergeOrder = 1
End Sub
The merge type of a menu item indicates how the menu item behaves when it has the same merge order as another menu item being merged. You can use merged menus to create a consolidated menu based on two or more existing menus.
Produkt | Versioner |
---|---|
.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 |
Feedback om .NET
.NET är ett öppen källkod projekt. Välj en länk för att ge feedback: