MenuItem.MergeType 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出這個功能表項目的功能表和其他功能表合併時,這個功能表項目的行為。
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
屬性值
MenuMerge 的值,表示功能表項目的合併型別。
例外狀況
指派的值不是其中一個 MenuMerge 值。
範例
下列程式碼範例會 MenuItem 使用 建立 , MergeType 並 MergeOrder 指定 ,以便將功能表項目新增至第一個位置的合併功能表。
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
備註
功能表項目的合併類型會指出當功能表項目具有與另一個合併功能表項目相同的合併順序時,功能表項目的行為。 您可以使用合併功能表,根據兩個或多個現有的功能表來建立合併功能表。