MenuItem.MergeType Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un valore che indica il comportamento di questa voce di menu quando il relativo menu è unito a un altro.
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
Valore della proprietà
Valore MenuMerge che rappresenta il tipo di unione della voce di menu.
Eccezioni
Il valore assegnato non è uno dei valori di MenuMerge.
Esempio
Nell'esempio MergeType di codice seguente viene creato un oggetto MenuItem con e MergeOrder specificato in modo che la voce di menu venga aggiunta al menu unito in prima posizione.
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
Commenti
Il tipo di unione di una voce di menu indica il comportamento della voce di menu quando ha lo stesso ordine di unione di un'altra voce di menu. È possibile usare i menu uniti per creare un menu consolidato in base a due o più menu esistenti.